fake-bpy-module 20250612__py3-none-any.whl → 20260118__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.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bpy/ops/clip/__init__.pyi
CHANGED
|
@@ -16,20 +16,15 @@ def add_marker(
|
|
|
16
16
|
) -> None:
|
|
17
17
|
"""Place new marker at specified location
|
|
18
18
|
|
|
19
|
-
:type execution_context: int | str | None
|
|
20
|
-
:type undo: bool | None
|
|
21
19
|
:param location: Location, Location of marker on frame
|
|
22
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
23
20
|
"""
|
|
24
21
|
|
|
25
22
|
def add_marker_at_click(
|
|
26
|
-
execution_context: int | str | None = None,
|
|
23
|
+
execution_context: int | str | None = None,
|
|
24
|
+
undo: bool | None = None,
|
|
25
|
+
/,
|
|
27
26
|
) -> None:
|
|
28
|
-
"""Place new marker at the desired (clicked) position
|
|
29
|
-
|
|
30
|
-
:type execution_context: int | str | None
|
|
31
|
-
:type undo: bool | None
|
|
32
|
-
"""
|
|
27
|
+
"""Place new marker at the desired (clicked) position"""
|
|
33
28
|
|
|
34
29
|
def add_marker_move(
|
|
35
30
|
execution_context: int | str | None = None,
|
|
@@ -41,12 +36,8 @@ def add_marker_move(
|
|
|
41
36
|
) -> None:
|
|
42
37
|
"""Add new marker and move it on movie
|
|
43
38
|
|
|
44
|
-
:type execution_context: int | str | None
|
|
45
|
-
:type undo: bool | None
|
|
46
39
|
:param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
|
|
47
|
-
:type CLIP_OT_add_marker: add_marker | None
|
|
48
40
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
49
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
50
41
|
"""
|
|
51
42
|
|
|
52
43
|
def add_marker_slide(
|
|
@@ -59,12 +50,8 @@ def add_marker_slide(
|
|
|
59
50
|
) -> None:
|
|
60
51
|
"""Add new marker and slide it with mouse until mouse button release
|
|
61
52
|
|
|
62
|
-
:type execution_context: int | str | None
|
|
63
|
-
:type undo: bool | None
|
|
64
53
|
:param CLIP_OT_add_marker: Add Marker, Place new marker at specified location
|
|
65
|
-
:type CLIP_OT_add_marker: add_marker | None
|
|
66
54
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
67
|
-
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
68
55
|
"""
|
|
69
56
|
|
|
70
57
|
def apply_solution_scale(
|
|
@@ -76,10 +63,7 @@ def apply_solution_scale(
|
|
|
76
63
|
) -> None:
|
|
77
64
|
"""Apply scale on solution itself to make distance between selected tracks equals to desired
|
|
78
65
|
|
|
79
|
-
:type execution_context: int | str | None
|
|
80
|
-
:type undo: bool | None
|
|
81
66
|
:param distance: Distance, Distance between selected tracks
|
|
82
|
-
:type distance: float | None
|
|
83
67
|
"""
|
|
84
68
|
|
|
85
69
|
def average_tracks(
|
|
@@ -91,20 +75,15 @@ def average_tracks(
|
|
|
91
75
|
) -> None:
|
|
92
76
|
"""Average selected tracks into active
|
|
93
77
|
|
|
94
|
-
:type execution_context: int | str | None
|
|
95
|
-
:type undo: bool | None
|
|
96
78
|
:param keep_original: Keep Original, Keep original tracks
|
|
97
|
-
:type keep_original: bool | None
|
|
98
79
|
"""
|
|
99
80
|
|
|
100
81
|
def bundles_to_mesh(
|
|
101
|
-
execution_context: int | str | None = None,
|
|
82
|
+
execution_context: int | str | None = None,
|
|
83
|
+
undo: bool | None = None,
|
|
84
|
+
/,
|
|
102
85
|
) -> None:
|
|
103
|
-
"""Create vertex cloud using coordinates of reconstructed tracks
|
|
104
|
-
|
|
105
|
-
:type execution_context: int | str | None
|
|
106
|
-
:type undo: bool | None
|
|
107
|
-
"""
|
|
86
|
+
"""Create vertex cloud using coordinates of reconstructed tracks"""
|
|
108
87
|
|
|
109
88
|
def camera_preset_add(
|
|
110
89
|
execution_context: int | str | None = None,
|
|
@@ -118,16 +97,10 @@ def camera_preset_add(
|
|
|
118
97
|
) -> None:
|
|
119
98
|
"""Add or remove a Tracking Camera Intrinsics Preset
|
|
120
99
|
|
|
121
|
-
:type execution_context: int | str | None
|
|
122
|
-
:type undo: bool | None
|
|
123
100
|
:param name: Name, Name of the preset, used to make the path name
|
|
124
|
-
:type name: str
|
|
125
101
|
:param remove_name: remove_name
|
|
126
|
-
:type remove_name: bool | None
|
|
127
102
|
:param remove_active: remove_active
|
|
128
|
-
:type remove_active: bool | None
|
|
129
103
|
:param use_focal_length: Include Focal Length, Include focal length into the preset
|
|
130
|
-
:type use_focal_length: bool | None
|
|
131
104
|
"""
|
|
132
105
|
|
|
133
106
|
def change_frame(
|
|
@@ -139,10 +112,7 @@ def change_frame(
|
|
|
139
112
|
) -> None:
|
|
140
113
|
"""Interactively change the current frame number
|
|
141
114
|
|
|
142
|
-
:type execution_context: int | str | None
|
|
143
|
-
:type undo: bool | None
|
|
144
115
|
:param frame: Frame
|
|
145
|
-
:type frame: int | None
|
|
146
116
|
"""
|
|
147
117
|
|
|
148
118
|
def clean_tracks(
|
|
@@ -157,12 +127,8 @@ def clean_tracks(
|
|
|
157
127
|
) -> None:
|
|
158
128
|
"""Clean tracks with high error values or few frames
|
|
159
129
|
|
|
160
|
-
:type execution_context: int | str | None
|
|
161
|
-
:type undo: bool | None
|
|
162
130
|
:param frames: Tracked Frames, Affect tracks which are tracked less than the specified number of frames
|
|
163
|
-
:type frames: int | None
|
|
164
131
|
:param error: Reprojection Error, Affect tracks which have a larger reprojection error
|
|
165
|
-
:type error: float | None
|
|
166
132
|
:param action: Action, Cleanup action to execute
|
|
167
133
|
|
|
168
134
|
SELECT
|
|
@@ -173,17 +139,14 @@ def clean_tracks(
|
|
|
173
139
|
|
|
174
140
|
DELETE_SEGMENTS
|
|
175
141
|
Delete Segments -- Delete unclean segments of tracks.
|
|
176
|
-
:type action: typing.Literal['SELECT','DELETE_TRACK','DELETE_SEGMENTS'] | None
|
|
177
142
|
"""
|
|
178
143
|
|
|
179
144
|
def clear_solution(
|
|
180
|
-
execution_context: int | str | None = None,
|
|
145
|
+
execution_context: int | str | None = None,
|
|
146
|
+
undo: bool | None = None,
|
|
147
|
+
/,
|
|
181
148
|
) -> None:
|
|
182
|
-
"""Clear all calculated data
|
|
183
|
-
|
|
184
|
-
:type execution_context: int | str | None
|
|
185
|
-
:type undo: bool | None
|
|
186
|
-
"""
|
|
149
|
+
"""Clear all calculated data"""
|
|
187
150
|
|
|
188
151
|
def clear_track_path(
|
|
189
152
|
execution_context: int | str | None = None,
|
|
@@ -195,8 +158,6 @@ def clear_track_path(
|
|
|
195
158
|
) -> None:
|
|
196
159
|
"""Clear tracks after/before current position or clear the whole track
|
|
197
160
|
|
|
198
|
-
:type execution_context: int | str | None
|
|
199
|
-
:type undo: bool | None
|
|
200
161
|
:param action: Action, Clear action to execute
|
|
201
162
|
|
|
202
163
|
UPTO
|
|
@@ -207,37 +168,29 @@ def clear_track_path(
|
|
|
207
168
|
|
|
208
169
|
ALL
|
|
209
170
|
Clear All -- Clear the whole path.
|
|
210
|
-
:type action: typing.Literal['UPTO','REMAINED','ALL'] | None
|
|
211
171
|
:param clear_active: Clear Active, Clear active track only instead of all selected tracks
|
|
212
|
-
:type clear_active: bool | None
|
|
213
172
|
"""
|
|
214
173
|
|
|
215
174
|
def constraint_to_fcurve(
|
|
216
|
-
execution_context: int | str | None = None,
|
|
175
|
+
execution_context: int | str | None = None,
|
|
176
|
+
undo: bool | None = None,
|
|
177
|
+
/,
|
|
217
178
|
) -> None:
|
|
218
|
-
"""Create F-Curves for object which will copy
|
|
219
|
-
|
|
220
|
-
:type execution_context: int | str | None
|
|
221
|
-
:type undo: bool | None
|
|
222
|
-
"""
|
|
179
|
+
"""Create F-Curves for object which will copy objects movement caused by this constraint"""
|
|
223
180
|
|
|
224
181
|
def copy_tracks(
|
|
225
|
-
execution_context: int | str | None = None,
|
|
182
|
+
execution_context: int | str | None = None,
|
|
183
|
+
undo: bool | None = None,
|
|
184
|
+
/,
|
|
226
185
|
) -> None:
|
|
227
|
-
"""Copy the selected tracks to the internal clipboard
|
|
228
|
-
|
|
229
|
-
:type execution_context: int | str | None
|
|
230
|
-
:type undo: bool | None
|
|
231
|
-
"""
|
|
186
|
+
"""Copy the selected tracks to the internal clipboard"""
|
|
232
187
|
|
|
233
188
|
def create_plane_track(
|
|
234
|
-
execution_context: int | str | None = None,
|
|
189
|
+
execution_context: int | str | None = None,
|
|
190
|
+
undo: bool | None = None,
|
|
191
|
+
/,
|
|
235
192
|
) -> None:
|
|
236
|
-
"""Create new plane track out of selected point tracks
|
|
237
|
-
|
|
238
|
-
:type execution_context: int | str | None
|
|
239
|
-
:type undo: bool | None
|
|
240
|
-
"""
|
|
193
|
+
"""Create new plane track out of selected point tracks"""
|
|
241
194
|
|
|
242
195
|
def cursor_set(
|
|
243
196
|
execution_context: int | str | None = None,
|
|
@@ -248,10 +201,7 @@ def cursor_set(
|
|
|
248
201
|
) -> None:
|
|
249
202
|
"""Set 2D cursor location
|
|
250
203
|
|
|
251
|
-
:type execution_context: int | str | None
|
|
252
|
-
:type undo: bool | None
|
|
253
204
|
:param location: Location, Cursor location in normalized clip coordinates
|
|
254
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
255
205
|
"""
|
|
256
206
|
|
|
257
207
|
def delete_marker(
|
|
@@ -263,20 +213,15 @@ def delete_marker(
|
|
|
263
213
|
) -> None:
|
|
264
214
|
"""Delete marker for current frame from selected tracks
|
|
265
215
|
|
|
266
|
-
:type execution_context: int | str | None
|
|
267
|
-
:type undo: bool | None
|
|
268
216
|
:param confirm: Confirm, Prompt for confirmation
|
|
269
|
-
:type confirm: bool | None
|
|
270
217
|
"""
|
|
271
218
|
|
|
272
219
|
def delete_proxy(
|
|
273
|
-
execution_context: int | str | None = None,
|
|
220
|
+
execution_context: int | str | None = None,
|
|
221
|
+
undo: bool | None = None,
|
|
222
|
+
/,
|
|
274
223
|
) -> None:
|
|
275
|
-
"""Delete movie clip proxy files from the hard drive
|
|
276
|
-
|
|
277
|
-
:type execution_context: int | str | None
|
|
278
|
-
:type undo: bool | None
|
|
279
|
-
"""
|
|
224
|
+
"""Delete movie clip proxy files from the hard drive"""
|
|
280
225
|
|
|
281
226
|
def delete_track(
|
|
282
227
|
execution_context: int | str | None = None,
|
|
@@ -287,10 +232,7 @@ def delete_track(
|
|
|
287
232
|
) -> None:
|
|
288
233
|
"""Delete selected tracks
|
|
289
234
|
|
|
290
|
-
:type execution_context: int | str | None
|
|
291
|
-
:type undo: bool | None
|
|
292
235
|
:param confirm: Confirm, Prompt for confirmation
|
|
293
|
-
:type confirm: bool | None
|
|
294
236
|
"""
|
|
295
237
|
|
|
296
238
|
def detect_features(
|
|
@@ -306,8 +248,6 @@ def detect_features(
|
|
|
306
248
|
) -> None:
|
|
307
249
|
"""Automatically detect features and place markers to track
|
|
308
250
|
|
|
309
|
-
:type execution_context: int | str | None
|
|
310
|
-
:type undo: bool | None
|
|
311
251
|
:param placement: Placement, Placement for detected features
|
|
312
252
|
|
|
313
253
|
FRAME
|
|
@@ -318,13 +258,9 @@ def detect_features(
|
|
|
318
258
|
|
|
319
259
|
OUTSIDE_GPENCIL
|
|
320
260
|
Outside Annotated Area -- Place markers only outside areas outlined with the Annotation tool.
|
|
321
|
-
:type placement: typing.Literal['FRAME','INSIDE_GPENCIL','OUTSIDE_GPENCIL'] | None
|
|
322
261
|
:param margin: Margin, Only features further than margin pixels from the image edges are considered
|
|
323
|
-
:type margin: int | None
|
|
324
262
|
:param threshold: Threshold, Threshold level to consider feature good enough for tracking
|
|
325
|
-
:type threshold: float | None
|
|
326
263
|
:param min_distance: Distance, Minimal distance accepted between two features
|
|
327
|
-
:type min_distance: int | None
|
|
328
264
|
"""
|
|
329
265
|
|
|
330
266
|
def disable_markers(
|
|
@@ -336,8 +272,6 @@ def disable_markers(
|
|
|
336
272
|
) -> None:
|
|
337
273
|
"""Disable/enable selected markers
|
|
338
274
|
|
|
339
|
-
:type execution_context: int | str | None
|
|
340
|
-
:type undo: bool | None
|
|
341
275
|
:param action: Action, Disable action to execute
|
|
342
276
|
|
|
343
277
|
DISABLE
|
|
@@ -348,7 +282,6 @@ def disable_markers(
|
|
|
348
282
|
|
|
349
283
|
TOGGLE
|
|
350
284
|
Toggle -- Toggle disabled flag for selected markers.
|
|
351
|
-
:type action: typing.Literal['DISABLE','ENABLE','TOGGLE'] | None
|
|
352
285
|
"""
|
|
353
286
|
|
|
354
287
|
def dopesheet_select_channel(
|
|
@@ -361,22 +294,16 @@ def dopesheet_select_channel(
|
|
|
361
294
|
) -> None:
|
|
362
295
|
"""Select movie tracking channel
|
|
363
296
|
|
|
364
|
-
:type execution_context: int | str | None
|
|
365
|
-
:type undo: bool | None
|
|
366
297
|
:param location: Location, Mouse location to select channel
|
|
367
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
368
298
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
369
|
-
:type extend: bool | None
|
|
370
299
|
"""
|
|
371
300
|
|
|
372
301
|
def dopesheet_view_all(
|
|
373
|
-
execution_context: int | str | None = None,
|
|
302
|
+
execution_context: int | str | None = None,
|
|
303
|
+
undo: bool | None = None,
|
|
304
|
+
/,
|
|
374
305
|
) -> None:
|
|
375
|
-
"""Reset viewable area to show full keyframe range
|
|
376
|
-
|
|
377
|
-
:type execution_context: int | str | None
|
|
378
|
-
:type undo: bool | None
|
|
379
|
-
"""
|
|
306
|
+
"""Reset viewable area to show full keyframe range"""
|
|
380
307
|
|
|
381
308
|
def filter_tracks(
|
|
382
309
|
execution_context: int | str | None = None,
|
|
@@ -387,10 +314,7 @@ def filter_tracks(
|
|
|
387
314
|
) -> None:
|
|
388
315
|
"""Filter tracks which has weirdly looking spikes in motion curves
|
|
389
316
|
|
|
390
|
-
:type execution_context: int | str | None
|
|
391
|
-
:type undo: bool | None
|
|
392
317
|
:param track_threshold: Track Threshold, Filter Threshold to select problematic tracks
|
|
393
|
-
:type track_threshold: float | None
|
|
394
318
|
"""
|
|
395
319
|
|
|
396
320
|
def frame_jump(
|
|
@@ -403,8 +327,6 @@ def frame_jump(
|
|
|
403
327
|
) -> None:
|
|
404
328
|
"""Jump to special frame
|
|
405
329
|
|
|
406
|
-
:type execution_context: int | str | None
|
|
407
|
-
:type undo: bool | None
|
|
408
330
|
:param position: Position, Position to jump to
|
|
409
331
|
|
|
410
332
|
PATHSTART
|
|
@@ -418,17 +340,14 @@ def frame_jump(
|
|
|
418
340
|
|
|
419
341
|
FAILNEXT
|
|
420
342
|
Next Failed -- Jump to next failed frame.
|
|
421
|
-
:type position: typing.Literal['PATHSTART','PATHEND','FAILEDPREV','FAILNEXT'] | None
|
|
422
343
|
"""
|
|
423
344
|
|
|
424
345
|
def graph_center_current_frame(
|
|
425
|
-
execution_context: int | str | None = None,
|
|
346
|
+
execution_context: int | str | None = None,
|
|
347
|
+
undo: bool | None = None,
|
|
348
|
+
/,
|
|
426
349
|
) -> None:
|
|
427
|
-
"""Scroll view so current frame would be centered
|
|
428
|
-
|
|
429
|
-
:type execution_context: int | str | None
|
|
430
|
-
:type undo: bool | None
|
|
431
|
-
"""
|
|
350
|
+
"""Scroll view so current frame would be centered"""
|
|
432
351
|
|
|
433
352
|
def graph_delete_curve(
|
|
434
353
|
execution_context: int | str | None = None,
|
|
@@ -439,20 +358,15 @@ def graph_delete_curve(
|
|
|
439
358
|
) -> None:
|
|
440
359
|
"""Delete track corresponding to the selected curve
|
|
441
360
|
|
|
442
|
-
:type execution_context: int | str | None
|
|
443
|
-
:type undo: bool | None
|
|
444
361
|
:param confirm: Confirm, Prompt for confirmation
|
|
445
|
-
:type confirm: bool | None
|
|
446
362
|
"""
|
|
447
363
|
|
|
448
364
|
def graph_delete_knot(
|
|
449
|
-
execution_context: int | str | None = None,
|
|
365
|
+
execution_context: int | str | None = None,
|
|
366
|
+
undo: bool | None = None,
|
|
367
|
+
/,
|
|
450
368
|
) -> None:
|
|
451
|
-
"""Delete curve knots
|
|
452
|
-
|
|
453
|
-
:type execution_context: int | str | None
|
|
454
|
-
:type undo: bool | None
|
|
455
|
-
"""
|
|
369
|
+
"""Delete curve knots"""
|
|
456
370
|
|
|
457
371
|
def graph_disable_markers(
|
|
458
372
|
execution_context: int | str | None = None,
|
|
@@ -463,8 +377,6 @@ def graph_disable_markers(
|
|
|
463
377
|
) -> None:
|
|
464
378
|
"""Disable/enable selected markers
|
|
465
379
|
|
|
466
|
-
:type execution_context: int | str | None
|
|
467
|
-
:type undo: bool | None
|
|
468
380
|
:param action: Action, Disable action to execute
|
|
469
381
|
|
|
470
382
|
DISABLE
|
|
@@ -475,7 +387,6 @@ def graph_disable_markers(
|
|
|
475
387
|
|
|
476
388
|
TOGGLE
|
|
477
389
|
Toggle -- Toggle disabled flag for selected markers.
|
|
478
|
-
:type action: typing.Literal['DISABLE','ENABLE','TOGGLE'] | None
|
|
479
390
|
"""
|
|
480
391
|
|
|
481
392
|
def graph_select(
|
|
@@ -488,12 +399,8 @@ def graph_select(
|
|
|
488
399
|
) -> None:
|
|
489
400
|
"""Select graph curves
|
|
490
401
|
|
|
491
|
-
:type execution_context: int | str | None
|
|
492
|
-
:type undo: bool | None
|
|
493
402
|
:param location: Location, Mouse location to select nearest entity
|
|
494
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
495
403
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
496
|
-
:type extend: bool | None
|
|
497
404
|
"""
|
|
498
405
|
|
|
499
406
|
def graph_select_all_markers(
|
|
@@ -505,8 +412,6 @@ def graph_select_all_markers(
|
|
|
505
412
|
) -> None:
|
|
506
413
|
"""Change selection of all markers of active track
|
|
507
414
|
|
|
508
|
-
:type execution_context: int | str | None
|
|
509
|
-
:type undo: bool | None
|
|
510
415
|
:param action: Action, Selection action to execute
|
|
511
416
|
|
|
512
417
|
TOGGLE
|
|
@@ -520,7 +425,6 @@ def graph_select_all_markers(
|
|
|
520
425
|
|
|
521
426
|
INVERT
|
|
522
427
|
Invert -- Invert selection of all elements.
|
|
523
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
524
428
|
"""
|
|
525
429
|
|
|
526
430
|
def graph_select_box(
|
|
@@ -538,32 +442,21 @@ def graph_select_box(
|
|
|
538
442
|
) -> None:
|
|
539
443
|
"""Select curve points using box selection
|
|
540
444
|
|
|
541
|
-
:type execution_context: int | str | None
|
|
542
|
-
:type undo: bool | None
|
|
543
445
|
:param xmin: X Min
|
|
544
|
-
:type xmin: int | None
|
|
545
446
|
:param xmax: X Max
|
|
546
|
-
:type xmax: int | None
|
|
547
447
|
:param ymin: Y Min
|
|
548
|
-
:type ymin: int | None
|
|
549
448
|
:param ymax: Y Max
|
|
550
|
-
:type ymax: int | None
|
|
551
449
|
:param wait_for_input: Wait for Input
|
|
552
|
-
:type wait_for_input: bool | None
|
|
553
450
|
:param deselect: Deselect, Deselect rather than select items
|
|
554
|
-
:type deselect: bool | None
|
|
555
451
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
556
|
-
:type extend: bool | None
|
|
557
452
|
"""
|
|
558
453
|
|
|
559
454
|
def graph_view_all(
|
|
560
|
-
execution_context: int | str | None = None,
|
|
455
|
+
execution_context: int | str | None = None,
|
|
456
|
+
undo: bool | None = None,
|
|
457
|
+
/,
|
|
561
458
|
) -> None:
|
|
562
|
-
"""View all curves in editor
|
|
563
|
-
|
|
564
|
-
:type execution_context: int | str | None
|
|
565
|
-
:type undo: bool | None
|
|
566
|
-
"""
|
|
459
|
+
"""View all curves in editor"""
|
|
567
460
|
|
|
568
461
|
def hide_tracks(
|
|
569
462
|
execution_context: int | str | None = None,
|
|
@@ -574,56 +467,43 @@ def hide_tracks(
|
|
|
574
467
|
) -> None:
|
|
575
468
|
"""Hide selected tracks
|
|
576
469
|
|
|
577
|
-
:type execution_context: int | str | None
|
|
578
|
-
:type undo: bool | None
|
|
579
470
|
:param unselected: Unselected, Hide unselected tracks
|
|
580
|
-
:type unselected: bool | None
|
|
581
471
|
"""
|
|
582
472
|
|
|
583
473
|
def hide_tracks_clear(
|
|
584
|
-
execution_context: int | str | None = None,
|
|
474
|
+
execution_context: int | str | None = None,
|
|
475
|
+
undo: bool | None = None,
|
|
476
|
+
/,
|
|
585
477
|
) -> None:
|
|
586
|
-
"""Clear hide selected tracks
|
|
587
|
-
|
|
588
|
-
:type execution_context: int | str | None
|
|
589
|
-
:type undo: bool | None
|
|
590
|
-
"""
|
|
478
|
+
"""Clear hide selected tracks"""
|
|
591
479
|
|
|
592
480
|
def join_tracks(
|
|
593
|
-
execution_context: int | str | None = None,
|
|
481
|
+
execution_context: int | str | None = None,
|
|
482
|
+
undo: bool | None = None,
|
|
483
|
+
/,
|
|
594
484
|
) -> None:
|
|
595
|
-
"""Join selected tracks
|
|
596
|
-
|
|
597
|
-
:type execution_context: int | str | None
|
|
598
|
-
:type undo: bool | None
|
|
599
|
-
"""
|
|
485
|
+
"""Join selected tracks"""
|
|
600
486
|
|
|
601
487
|
def keyframe_delete(
|
|
602
|
-
execution_context: int | str | None = None,
|
|
488
|
+
execution_context: int | str | None = None,
|
|
489
|
+
undo: bool | None = None,
|
|
490
|
+
/,
|
|
603
491
|
) -> None:
|
|
604
|
-
"""Delete a keyframe from selected tracks at current frame
|
|
605
|
-
|
|
606
|
-
:type execution_context: int | str | None
|
|
607
|
-
:type undo: bool | None
|
|
608
|
-
"""
|
|
492
|
+
"""Delete a keyframe from selected tracks at current frame"""
|
|
609
493
|
|
|
610
494
|
def keyframe_insert(
|
|
611
|
-
execution_context: int | str | None = None,
|
|
495
|
+
execution_context: int | str | None = None,
|
|
496
|
+
undo: bool | None = None,
|
|
497
|
+
/,
|
|
612
498
|
) -> None:
|
|
613
|
-
"""Insert a keyframe to selected tracks at current frame
|
|
614
|
-
|
|
615
|
-
:type execution_context: int | str | None
|
|
616
|
-
:type undo: bool | None
|
|
617
|
-
"""
|
|
499
|
+
"""Insert a keyframe to selected tracks at current frame"""
|
|
618
500
|
|
|
619
501
|
def lock_selection_toggle(
|
|
620
|
-
execution_context: int | str | None = None,
|
|
502
|
+
execution_context: int | str | None = None,
|
|
503
|
+
undo: bool | None = None,
|
|
504
|
+
/,
|
|
621
505
|
) -> None:
|
|
622
|
-
"""Toggle Lock Selection option of the current clip editor
|
|
623
|
-
|
|
624
|
-
:type execution_context: int | str | None
|
|
625
|
-
:type undo: bool | None
|
|
626
|
-
"""
|
|
506
|
+
"""Toggle Lock Selection option of the current clip editor"""
|
|
627
507
|
|
|
628
508
|
def lock_tracks(
|
|
629
509
|
execution_context: int | str | None = None,
|
|
@@ -634,8 +514,6 @@ def lock_tracks(
|
|
|
634
514
|
) -> None:
|
|
635
515
|
"""Lock/unlock selected tracks
|
|
636
516
|
|
|
637
|
-
:type execution_context: int | str | None
|
|
638
|
-
:type undo: bool | None
|
|
639
517
|
:param action: Action, Lock action to execute
|
|
640
518
|
|
|
641
519
|
LOCK
|
|
@@ -646,7 +524,6 @@ def lock_tracks(
|
|
|
646
524
|
|
|
647
525
|
TOGGLE
|
|
648
526
|
Toggle -- Toggle locked flag for selected tracks.
|
|
649
|
-
:type action: typing.Literal['LOCK','UNLOCK','TOGGLE'] | None
|
|
650
527
|
"""
|
|
651
528
|
|
|
652
529
|
def mode_set(
|
|
@@ -658,20 +535,15 @@ def mode_set(
|
|
|
658
535
|
) -> None:
|
|
659
536
|
"""Set the clip interaction mode
|
|
660
537
|
|
|
661
|
-
:type execution_context: int | str | None
|
|
662
|
-
:type undo: bool | None
|
|
663
538
|
:param mode: Mode
|
|
664
|
-
:type mode: bpy.stub_internal.rna_enums.ClipEditorModeItems | None
|
|
665
539
|
"""
|
|
666
540
|
|
|
667
541
|
def new_image_from_plane_marker(
|
|
668
|
-
execution_context: int | str | None = None,
|
|
542
|
+
execution_context: int | str | None = None,
|
|
543
|
+
undo: bool | None = None,
|
|
544
|
+
/,
|
|
669
545
|
) -> None:
|
|
670
|
-
"""Create new image from the content of the plane marker
|
|
671
|
-
|
|
672
|
-
:type execution_context: int | str | None
|
|
673
|
-
:type undo: bool | None
|
|
674
|
-
"""
|
|
546
|
+
"""Create new image from the content of the plane marker"""
|
|
675
547
|
|
|
676
548
|
def open(
|
|
677
549
|
execution_context: int | str | None = None,
|
|
@@ -719,56 +591,30 @@ def open(
|
|
|
719
591
|
) -> None:
|
|
720
592
|
"""Load a sequence of frames or a movie file
|
|
721
593
|
|
|
722
|
-
:type execution_context: int | str | None
|
|
723
|
-
:type undo: bool | None
|
|
724
594
|
:param directory: Directory, Directory of the file
|
|
725
|
-
:type directory: str
|
|
726
595
|
:param files: Files
|
|
727
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
|
|
728
596
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
729
|
-
:type hide_props_region: bool | None
|
|
730
597
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
731
|
-
:type check_existing: bool | None
|
|
732
598
|
:param filter_blender: Filter .blend files
|
|
733
|
-
:type filter_blender: bool | None
|
|
734
599
|
:param filter_backup: Filter .blend files
|
|
735
|
-
:type filter_backup: bool | None
|
|
736
600
|
:param filter_image: Filter image files
|
|
737
|
-
:type filter_image: bool | None
|
|
738
601
|
:param filter_movie: Filter movie files
|
|
739
|
-
:type filter_movie: bool | None
|
|
740
602
|
:param filter_python: Filter Python files
|
|
741
|
-
:type filter_python: bool | None
|
|
742
603
|
:param filter_font: Filter font files
|
|
743
|
-
:type filter_font: bool | None
|
|
744
604
|
:param filter_sound: Filter sound files
|
|
745
|
-
:type filter_sound: bool | None
|
|
746
605
|
:param filter_text: Filter text files
|
|
747
|
-
:type filter_text: bool | None
|
|
748
606
|
:param filter_archive: Filter archive files
|
|
749
|
-
:type filter_archive: bool | None
|
|
750
607
|
:param filter_btx: Filter btx files
|
|
751
|
-
:type filter_btx: bool | None
|
|
752
608
|
:param filter_alembic: Filter Alembic files
|
|
753
|
-
:type filter_alembic: bool | None
|
|
754
609
|
:param filter_usd: Filter USD files
|
|
755
|
-
:type filter_usd: bool | None
|
|
756
610
|
:param filter_obj: Filter OBJ files
|
|
757
|
-
:type filter_obj: bool | None
|
|
758
611
|
:param filter_volume: Filter OpenVDB volume files
|
|
759
|
-
:type filter_volume: bool | None
|
|
760
612
|
:param filter_folder: Filter folders
|
|
761
|
-
:type filter_folder: bool | None
|
|
762
613
|
:param filter_blenlib: Filter Blender IDs
|
|
763
|
-
:type filter_blenlib: bool | None
|
|
764
614
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
765
|
-
:type filemode: int | None
|
|
766
615
|
:param relative_path: Relative Path, Select the file relative to the blend file
|
|
767
|
-
:type relative_path: bool | None
|
|
768
616
|
:param show_multiview: Enable Multi-View
|
|
769
|
-
:type show_multiview: bool | None
|
|
770
617
|
:param use_multiview: Use Multi-View
|
|
771
|
-
:type use_multiview: bool | None
|
|
772
618
|
:param display_type: Display Type
|
|
773
619
|
|
|
774
620
|
DEFAULT
|
|
@@ -782,7 +628,6 @@ def open(
|
|
|
782
628
|
|
|
783
629
|
THUMBNAIL
|
|
784
630
|
Thumbnails -- Display files as thumbnails.
|
|
785
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
786
631
|
:param sort_method: File sorting mode
|
|
787
632
|
|
|
788
633
|
DEFAULT
|
|
@@ -802,35 +647,28 @@ def open(
|
|
|
802
647
|
|
|
803
648
|
ASSET_CATALOG
|
|
804
649
|
Asset Catalog -- Sort the asset list so that assets in the same catalog are kept together. Within a single catalog, assets are ordered by name. The catalogs are in order of the flattened catalog hierarchy..
|
|
805
|
-
:type sort_method: typing.Literal['DEFAULT','FILE_SORT_ALPHA','FILE_SORT_EXTENSION','FILE_SORT_TIME','FILE_SORT_SIZE','ASSET_CATALOG'] | None
|
|
806
650
|
"""
|
|
807
651
|
|
|
808
652
|
def paste_tracks(
|
|
809
|
-
execution_context: int | str | None = None,
|
|
653
|
+
execution_context: int | str | None = None,
|
|
654
|
+
undo: bool | None = None,
|
|
655
|
+
/,
|
|
810
656
|
) -> None:
|
|
811
|
-
"""Paste tracks from the internal clipboard
|
|
812
|
-
|
|
813
|
-
:type execution_context: int | str | None
|
|
814
|
-
:type undo: bool | None
|
|
815
|
-
"""
|
|
657
|
+
"""Paste tracks from the internal clipboard"""
|
|
816
658
|
|
|
817
659
|
def prefetch(
|
|
818
|
-
execution_context: int | str | None = None,
|
|
660
|
+
execution_context: int | str | None = None,
|
|
661
|
+
undo: bool | None = None,
|
|
662
|
+
/,
|
|
819
663
|
) -> None:
|
|
820
|
-
"""Prefetch frames from disk for faster playback/tracking
|
|
821
|
-
|
|
822
|
-
:type execution_context: int | str | None
|
|
823
|
-
:type undo: bool | None
|
|
824
|
-
"""
|
|
664
|
+
"""Prefetch frames from disk for faster playback/tracking"""
|
|
825
665
|
|
|
826
666
|
def rebuild_proxy(
|
|
827
|
-
execution_context: int | str | None = None,
|
|
667
|
+
execution_context: int | str | None = None,
|
|
668
|
+
undo: bool | None = None,
|
|
669
|
+
/,
|
|
828
670
|
) -> None:
|
|
829
|
-
"""Rebuild all selected proxies and timecode indices in the background
|
|
830
|
-
|
|
831
|
-
:type execution_context: int | str | None
|
|
832
|
-
:type undo: bool | None
|
|
833
|
-
"""
|
|
671
|
+
"""Rebuild all selected proxies and timecode indices in the background"""
|
|
834
672
|
|
|
835
673
|
def refine_markers(
|
|
836
674
|
execution_context: int | str | None = None,
|
|
@@ -839,22 +677,17 @@ def refine_markers(
|
|
|
839
677
|
*,
|
|
840
678
|
backwards: bool | None = False,
|
|
841
679
|
) -> None:
|
|
842
|
-
"""Refine selected markers positions by running the tracker from
|
|
680
|
+
"""Refine selected markers positions by running the tracker from tracks reference to current frame
|
|
843
681
|
|
|
844
|
-
:type execution_context: int | str | None
|
|
845
|
-
:type undo: bool | None
|
|
846
682
|
:param backwards: Backwards, Do backwards tracking
|
|
847
|
-
:type backwards: bool | None
|
|
848
683
|
"""
|
|
849
684
|
|
|
850
685
|
def reload(
|
|
851
|
-
execution_context: int | str | None = None,
|
|
686
|
+
execution_context: int | str | None = None,
|
|
687
|
+
undo: bool | None = None,
|
|
688
|
+
/,
|
|
852
689
|
) -> None:
|
|
853
|
-
"""Reload clip
|
|
854
|
-
|
|
855
|
-
:type execution_context: int | str | None
|
|
856
|
-
:type undo: bool | None
|
|
857
|
-
"""
|
|
690
|
+
"""Reload clip"""
|
|
858
691
|
|
|
859
692
|
def select(
|
|
860
693
|
execution_context: int | str | None = None,
|
|
@@ -867,14 +700,9 @@ def select(
|
|
|
867
700
|
) -> None:
|
|
868
701
|
"""Select tracking markers
|
|
869
702
|
|
|
870
|
-
:type execution_context: int | str | None
|
|
871
|
-
:type undo: bool | None
|
|
872
703
|
:param extend: Extend, Extend selection rather than clearing the existing selection
|
|
873
|
-
:type extend: bool | None
|
|
874
704
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
875
|
-
:type deselect_all: bool | None
|
|
876
705
|
:param location: Location, Mouse location in normalized coordinates, 0.0 to 1.0 is within the image bounds
|
|
877
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
878
706
|
"""
|
|
879
707
|
|
|
880
708
|
def select_all(
|
|
@@ -886,8 +714,6 @@ def select_all(
|
|
|
886
714
|
) -> None:
|
|
887
715
|
"""Change selection of all tracking markers
|
|
888
716
|
|
|
889
|
-
:type execution_context: int | str | None
|
|
890
|
-
:type undo: bool | None
|
|
891
717
|
:param action: Action, Selection action to execute
|
|
892
718
|
|
|
893
719
|
TOGGLE
|
|
@@ -901,7 +727,6 @@ def select_all(
|
|
|
901
727
|
|
|
902
728
|
INVERT
|
|
903
729
|
Invert -- Invert selection of all elements.
|
|
904
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
905
730
|
"""
|
|
906
731
|
|
|
907
732
|
def select_box(
|
|
@@ -918,18 +743,11 @@ def select_box(
|
|
|
918
743
|
) -> None:
|
|
919
744
|
"""Select markers using box selection
|
|
920
745
|
|
|
921
|
-
:type execution_context: int | str | None
|
|
922
|
-
:type undo: bool | None
|
|
923
746
|
:param xmin: X Min
|
|
924
|
-
:type xmin: int | None
|
|
925
747
|
:param xmax: X Max
|
|
926
|
-
:type xmax: int | None
|
|
927
748
|
:param ymin: Y Min
|
|
928
|
-
:type ymin: int | None
|
|
929
749
|
:param ymax: Y Max
|
|
930
|
-
:type ymax: int | None
|
|
931
750
|
:param wait_for_input: Wait for Input
|
|
932
|
-
:type wait_for_input: bool | None
|
|
933
751
|
:param mode: Mode
|
|
934
752
|
|
|
935
753
|
SET
|
|
@@ -940,7 +758,6 @@ def select_box(
|
|
|
940
758
|
|
|
941
759
|
SUB
|
|
942
760
|
Subtract -- Subtract existing selection.
|
|
943
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
944
761
|
"""
|
|
945
762
|
|
|
946
763
|
def select_circle(
|
|
@@ -956,16 +773,10 @@ def select_circle(
|
|
|
956
773
|
) -> None:
|
|
957
774
|
"""Select markers using circle selection
|
|
958
775
|
|
|
959
|
-
:type execution_context: int | str | None
|
|
960
|
-
:type undo: bool | None
|
|
961
776
|
:param x: X
|
|
962
|
-
:type x: int | None
|
|
963
777
|
:param y: Y
|
|
964
|
-
:type y: int | None
|
|
965
778
|
:param radius: Radius
|
|
966
|
-
:type radius: int | None
|
|
967
779
|
:param wait_for_input: Wait for Input
|
|
968
|
-
:type wait_for_input: bool | None
|
|
969
780
|
:param mode: Mode
|
|
970
781
|
|
|
971
782
|
SET
|
|
@@ -976,7 +787,6 @@ def select_circle(
|
|
|
976
787
|
|
|
977
788
|
SUB
|
|
978
789
|
Subtract -- Subtract existing selection.
|
|
979
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
980
790
|
"""
|
|
981
791
|
|
|
982
792
|
def select_grouped(
|
|
@@ -991,8 +801,6 @@ def select_grouped(
|
|
|
991
801
|
) -> None:
|
|
992
802
|
"""Select all tracks from specified group
|
|
993
803
|
|
|
994
|
-
:type execution_context: int | str | None
|
|
995
|
-
:type undo: bool | None
|
|
996
804
|
:param group: Action, Clear action to execute
|
|
997
805
|
|
|
998
806
|
KEYFRAMED
|
|
@@ -1015,7 +823,6 @@ def select_grouped(
|
|
|
1015
823
|
|
|
1016
824
|
FAILED
|
|
1017
825
|
Failed Tracks -- Select all tracks which failed to be reconstructed.
|
|
1018
|
-
:type group: typing.Literal['KEYFRAMED','ESTIMATED','TRACKED','LOCKED','DISABLED','COLOR','FAILED'] | None
|
|
1019
826
|
"""
|
|
1020
827
|
|
|
1021
828
|
def select_lasso(
|
|
@@ -1031,16 +838,10 @@ def select_lasso(
|
|
|
1031
838
|
) -> None:
|
|
1032
839
|
"""Select markers using lasso selection
|
|
1033
840
|
|
|
1034
|
-
:type execution_context: int | str | None
|
|
1035
|
-
:type undo: bool | None
|
|
1036
841
|
:param path: Path
|
|
1037
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1038
842
|
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
1039
|
-
:type use_smooth_stroke: bool | None
|
|
1040
843
|
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
1041
|
-
:type smooth_stroke_factor: float | None
|
|
1042
844
|
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
1043
|
-
:type smooth_stroke_radius: int | None
|
|
1044
845
|
:param mode: Mode
|
|
1045
846
|
|
|
1046
847
|
SET
|
|
@@ -1051,17 +852,14 @@ def select_lasso(
|
|
|
1051
852
|
|
|
1052
853
|
SUB
|
|
1053
854
|
Subtract -- Subtract existing selection.
|
|
1054
|
-
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1055
855
|
"""
|
|
1056
856
|
|
|
1057
857
|
def set_active_clip(
|
|
1058
|
-
execution_context: int | str | None = None,
|
|
858
|
+
execution_context: int | str | None = None,
|
|
859
|
+
undo: bool | None = None,
|
|
860
|
+
/,
|
|
1059
861
|
) -> None:
|
|
1060
|
-
"""Undocumented, consider contributing.
|
|
1061
|
-
|
|
1062
|
-
:type execution_context: int | str | None
|
|
1063
|
-
:type undo: bool | None
|
|
1064
|
-
"""
|
|
862
|
+
"""Undocumented, consider contributing."""
|
|
1065
863
|
|
|
1066
864
|
def set_axis(
|
|
1067
865
|
execution_context: int | str | None = None,
|
|
@@ -1072,8 +870,6 @@ def set_axis(
|
|
|
1072
870
|
) -> None:
|
|
1073
871
|
"""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
|
|
1074
872
|
|
|
1075
|
-
:type execution_context: int | str | None
|
|
1076
|
-
:type undo: bool | None
|
|
1077
873
|
:param axis: Axis, Axis to use to align bundle along
|
|
1078
874
|
|
|
1079
875
|
X
|
|
@@ -1081,7 +877,6 @@ def set_axis(
|
|
|
1081
877
|
|
|
1082
878
|
Y
|
|
1083
879
|
Y -- Align bundle align Y axis.
|
|
1084
|
-
:type axis: typing.Literal['X','Y'] | None
|
|
1085
880
|
"""
|
|
1086
881
|
|
|
1087
882
|
def set_origin(
|
|
@@ -1093,10 +888,7 @@ def set_origin(
|
|
|
1093
888
|
) -> None:
|
|
1094
889
|
"""Set active marker as origin by moving camera (or its parent if present) in 3D space
|
|
1095
890
|
|
|
1096
|
-
:type execution_context: int | str | None
|
|
1097
|
-
:type undo: bool | None
|
|
1098
891
|
:param use_median: Use Median, Set origin to median point of selected bundles
|
|
1099
|
-
:type use_median: bool | None
|
|
1100
892
|
"""
|
|
1101
893
|
|
|
1102
894
|
def set_plane(
|
|
@@ -1108,8 +900,6 @@ def set_plane(
|
|
|
1108
900
|
) -> None:
|
|
1109
901
|
"""Set plane based on 3 selected bundles by moving camera (or its parent if present) in 3D space
|
|
1110
902
|
|
|
1111
|
-
:type execution_context: int | str | None
|
|
1112
|
-
:type undo: bool | None
|
|
1113
903
|
:param plane: Plane, Plane to be used for orientation
|
|
1114
904
|
|
|
1115
905
|
FLOOR
|
|
@@ -1117,7 +907,6 @@ def set_plane(
|
|
|
1117
907
|
|
|
1118
908
|
WALL
|
|
1119
909
|
Wall -- Set wall plane.
|
|
1120
|
-
:type plane: typing.Literal['FLOOR','WALL'] | None
|
|
1121
910
|
"""
|
|
1122
911
|
|
|
1123
912
|
def set_scale(
|
|
@@ -1129,20 +918,15 @@ def set_scale(
|
|
|
1129
918
|
) -> None:
|
|
1130
919
|
"""Set scale of scene by scaling camera (or its parent if present)
|
|
1131
920
|
|
|
1132
|
-
:type execution_context: int | str | None
|
|
1133
|
-
:type undo: bool | None
|
|
1134
921
|
:param distance: Distance, Distance between selected tracks
|
|
1135
|
-
:type distance: float | None
|
|
1136
922
|
"""
|
|
1137
923
|
|
|
1138
924
|
def set_scene_frames(
|
|
1139
|
-
execution_context: int | str | None = None,
|
|
925
|
+
execution_context: int | str | None = None,
|
|
926
|
+
undo: bool | None = None,
|
|
927
|
+
/,
|
|
1140
928
|
) -> None:
|
|
1141
|
-
"""Set
|
|
1142
|
-
|
|
1143
|
-
:type execution_context: int | str | None
|
|
1144
|
-
:type undo: bool | None
|
|
1145
|
-
"""
|
|
929
|
+
"""Set scenes start and end frame to match clips start frame and length"""
|
|
1146
930
|
|
|
1147
931
|
def set_solution_scale(
|
|
1148
932
|
execution_context: int | str | None = None,
|
|
@@ -1153,10 +937,7 @@ def set_solution_scale(
|
|
|
1153
937
|
) -> None:
|
|
1154
938
|
"""Set object solution scale using distance between two selected tracks
|
|
1155
939
|
|
|
1156
|
-
:type execution_context: int | str | None
|
|
1157
|
-
:type undo: bool | None
|
|
1158
940
|
:param distance: Distance, Distance between selected tracks
|
|
1159
|
-
:type distance: float | None
|
|
1160
941
|
"""
|
|
1161
942
|
|
|
1162
943
|
def set_solver_keyframe(
|
|
@@ -1168,29 +949,22 @@ def set_solver_keyframe(
|
|
|
1168
949
|
) -> None:
|
|
1169
950
|
"""Set keyframe used by solver
|
|
1170
951
|
|
|
1171
|
-
:type execution_context: int | str | None
|
|
1172
|
-
:type undo: bool | None
|
|
1173
952
|
:param keyframe: Keyframe, Keyframe to set
|
|
1174
|
-
:type keyframe: typing.Literal['KEYFRAME_A','KEYFRAME_B'] | None
|
|
1175
953
|
"""
|
|
1176
954
|
|
|
1177
955
|
def set_viewport_background(
|
|
1178
|
-
execution_context: int | str | None = None,
|
|
956
|
+
execution_context: int | str | None = None,
|
|
957
|
+
undo: bool | None = None,
|
|
958
|
+
/,
|
|
1179
959
|
) -> None:
|
|
1180
|
-
"""Set current movie clip as a camera background in 3D Viewport (works only when a 3D Viewport is visible)
|
|
1181
|
-
|
|
1182
|
-
:type execution_context: int | str | None
|
|
1183
|
-
:type undo: bool | None
|
|
1184
|
-
"""
|
|
960
|
+
"""Set current movie clip as a camera background in 3D Viewport (works only when a 3D Viewport is visible)"""
|
|
1185
961
|
|
|
1186
962
|
def setup_tracking_scene(
|
|
1187
|
-
execution_context: int | str | None = None,
|
|
963
|
+
execution_context: int | str | None = None,
|
|
964
|
+
undo: bool | None = None,
|
|
965
|
+
/,
|
|
1188
966
|
) -> None:
|
|
1189
|
-
"""Prepare scene for compositing 3D objects into this footage
|
|
1190
|
-
|
|
1191
|
-
:type execution_context: int | str | None
|
|
1192
|
-
:type undo: bool | None
|
|
1193
|
-
"""
|
|
967
|
+
"""Prepare scene for compositing 3D objects into this footage"""
|
|
1194
968
|
|
|
1195
969
|
def slide_marker(
|
|
1196
970
|
execution_context: int | str | None = None,
|
|
@@ -1201,83 +975,64 @@ def slide_marker(
|
|
|
1201
975
|
) -> None:
|
|
1202
976
|
"""Slide marker areas
|
|
1203
977
|
|
|
1204
|
-
:type execution_context: int | str | None
|
|
1205
|
-
:type undo: bool | None
|
|
1206
978
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
1207
|
-
:type offset: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1208
979
|
"""
|
|
1209
980
|
|
|
1210
981
|
def slide_plane_marker(
|
|
1211
|
-
execution_context: int | str | None = None,
|
|
982
|
+
execution_context: int | str | None = None,
|
|
983
|
+
undo: bool | None = None,
|
|
984
|
+
/,
|
|
1212
985
|
) -> None:
|
|
1213
|
-
"""Slide plane marker areas
|
|
1214
|
-
|
|
1215
|
-
:type execution_context: int | str | None
|
|
1216
|
-
:type undo: bool | None
|
|
1217
|
-
"""
|
|
986
|
+
"""Slide plane marker areas"""
|
|
1218
987
|
|
|
1219
988
|
def solve_camera(
|
|
1220
|
-
execution_context: int | str | None = None,
|
|
989
|
+
execution_context: int | str | None = None,
|
|
990
|
+
undo: bool | None = None,
|
|
991
|
+
/,
|
|
1221
992
|
) -> None:
|
|
1222
|
-
"""Solve camera motion from tracks
|
|
1223
|
-
|
|
1224
|
-
:type execution_context: int | str | None
|
|
1225
|
-
:type undo: bool | None
|
|
1226
|
-
"""
|
|
993
|
+
"""Solve camera motion from tracks"""
|
|
1227
994
|
|
|
1228
995
|
def stabilize_2d_add(
|
|
1229
|
-
execution_context: int | str | None = None,
|
|
996
|
+
execution_context: int | str | None = None,
|
|
997
|
+
undo: bool | None = None,
|
|
998
|
+
/,
|
|
1230
999
|
) -> None:
|
|
1231
|
-
"""Add selected tracks to 2D translation stabilization
|
|
1232
|
-
|
|
1233
|
-
:type execution_context: int | str | None
|
|
1234
|
-
:type undo: bool | None
|
|
1235
|
-
"""
|
|
1000
|
+
"""Add selected tracks to 2D translation stabilization"""
|
|
1236
1001
|
|
|
1237
1002
|
def stabilize_2d_remove(
|
|
1238
|
-
execution_context: int | str | None = None,
|
|
1003
|
+
execution_context: int | str | None = None,
|
|
1004
|
+
undo: bool | None = None,
|
|
1005
|
+
/,
|
|
1239
1006
|
) -> None:
|
|
1240
|
-
"""Remove selected track from translation stabilization
|
|
1241
|
-
|
|
1242
|
-
:type execution_context: int | str | None
|
|
1243
|
-
:type undo: bool | None
|
|
1244
|
-
"""
|
|
1007
|
+
"""Remove selected track from translation stabilization"""
|
|
1245
1008
|
|
|
1246
1009
|
def stabilize_2d_rotation_add(
|
|
1247
|
-
execution_context: int | str | None = None,
|
|
1010
|
+
execution_context: int | str | None = None,
|
|
1011
|
+
undo: bool | None = None,
|
|
1012
|
+
/,
|
|
1248
1013
|
) -> None:
|
|
1249
|
-
"""Add selected tracks to 2D rotation stabilization
|
|
1250
|
-
|
|
1251
|
-
:type execution_context: int | str | None
|
|
1252
|
-
:type undo: bool | None
|
|
1253
|
-
"""
|
|
1014
|
+
"""Add selected tracks to 2D rotation stabilization"""
|
|
1254
1015
|
|
|
1255
1016
|
def stabilize_2d_rotation_remove(
|
|
1256
|
-
execution_context: int | str | None = None,
|
|
1017
|
+
execution_context: int | str | None = None,
|
|
1018
|
+
undo: bool | None = None,
|
|
1019
|
+
/,
|
|
1257
1020
|
) -> None:
|
|
1258
|
-
"""Remove selected track from rotation stabilization
|
|
1259
|
-
|
|
1260
|
-
:type execution_context: int | str | None
|
|
1261
|
-
:type undo: bool | None
|
|
1262
|
-
"""
|
|
1021
|
+
"""Remove selected track from rotation stabilization"""
|
|
1263
1022
|
|
|
1264
1023
|
def stabilize_2d_rotation_select(
|
|
1265
|
-
execution_context: int | str | None = None,
|
|
1024
|
+
execution_context: int | str | None = None,
|
|
1025
|
+
undo: bool | None = None,
|
|
1026
|
+
/,
|
|
1266
1027
|
) -> None:
|
|
1267
|
-
"""Select tracks which are used for rotation stabilization
|
|
1268
|
-
|
|
1269
|
-
:type execution_context: int | str | None
|
|
1270
|
-
:type undo: bool | None
|
|
1271
|
-
"""
|
|
1028
|
+
"""Select tracks which are used for rotation stabilization"""
|
|
1272
1029
|
|
|
1273
1030
|
def stabilize_2d_select(
|
|
1274
|
-
execution_context: int | str | None = None,
|
|
1031
|
+
execution_context: int | str | None = None,
|
|
1032
|
+
undo: bool | None = None,
|
|
1033
|
+
/,
|
|
1275
1034
|
) -> None:
|
|
1276
|
-
"""Select tracks which are used for translation stabilization
|
|
1277
|
-
|
|
1278
|
-
:type execution_context: int | str | None
|
|
1279
|
-
:type undo: bool | None
|
|
1280
|
-
"""
|
|
1035
|
+
"""Select tracks which are used for translation stabilization"""
|
|
1281
1036
|
|
|
1282
1037
|
def track_color_preset_add(
|
|
1283
1038
|
execution_context: int | str | None = None,
|
|
@@ -1290,24 +1045,17 @@ def track_color_preset_add(
|
|
|
1290
1045
|
) -> None:
|
|
1291
1046
|
"""Add or remove a Clip Track Color Preset
|
|
1292
1047
|
|
|
1293
|
-
:type execution_context: int | str | None
|
|
1294
|
-
:type undo: bool | None
|
|
1295
1048
|
:param name: Name, Name of the preset, used to make the path name
|
|
1296
|
-
:type name: str
|
|
1297
1049
|
:param remove_name: remove_name
|
|
1298
|
-
:type remove_name: bool | None
|
|
1299
1050
|
:param remove_active: remove_active
|
|
1300
|
-
:type remove_active: bool | None
|
|
1301
1051
|
"""
|
|
1302
1052
|
|
|
1303
1053
|
def track_copy_color(
|
|
1304
|
-
execution_context: int | str | None = None,
|
|
1054
|
+
execution_context: int | str | None = None,
|
|
1055
|
+
undo: bool | None = None,
|
|
1056
|
+
/,
|
|
1305
1057
|
) -> None:
|
|
1306
|
-
"""Copy color to all selected tracks
|
|
1307
|
-
|
|
1308
|
-
:type execution_context: int | str | None
|
|
1309
|
-
:type undo: bool | None
|
|
1310
|
-
"""
|
|
1058
|
+
"""Copy color to all selected tracks"""
|
|
1311
1059
|
|
|
1312
1060
|
def track_markers(
|
|
1313
1061
|
execution_context: int | str | None = None,
|
|
@@ -1319,58 +1067,44 @@ def track_markers(
|
|
|
1319
1067
|
) -> None:
|
|
1320
1068
|
"""Track selected markers
|
|
1321
1069
|
|
|
1322
|
-
:type execution_context: int | str | None
|
|
1323
|
-
:type undo: bool | None
|
|
1324
1070
|
:param backwards: Backwards, Do backwards tracking
|
|
1325
|
-
:type backwards: bool | None
|
|
1326
1071
|
:param sequence: Track Sequence, Track marker during image sequence rather than single image
|
|
1327
|
-
:type sequence: bool | None
|
|
1328
1072
|
"""
|
|
1329
1073
|
|
|
1330
1074
|
def track_settings_as_default(
|
|
1331
|
-
execution_context: int | str | None = None,
|
|
1075
|
+
execution_context: int | str | None = None,
|
|
1076
|
+
undo: bool | None = None,
|
|
1077
|
+
/,
|
|
1332
1078
|
) -> None:
|
|
1333
|
-
"""Copy tracking settings from active track to default settings
|
|
1334
|
-
|
|
1335
|
-
:type execution_context: int | str | None
|
|
1336
|
-
:type undo: bool | None
|
|
1337
|
-
"""
|
|
1079
|
+
"""Copy tracking settings from active track to default settings"""
|
|
1338
1080
|
|
|
1339
1081
|
def track_settings_to_track(
|
|
1340
|
-
execution_context: int | str | None = None,
|
|
1082
|
+
execution_context: int | str | None = None,
|
|
1083
|
+
undo: bool | None = None,
|
|
1084
|
+
/,
|
|
1341
1085
|
) -> None:
|
|
1342
|
-
"""Copy tracking settings from active track to selected tracks
|
|
1343
|
-
|
|
1344
|
-
:type execution_context: int | str | None
|
|
1345
|
-
:type undo: bool | None
|
|
1346
|
-
"""
|
|
1086
|
+
"""Copy tracking settings from active track to selected tracks"""
|
|
1347
1087
|
|
|
1348
1088
|
def track_to_empty(
|
|
1349
|
-
execution_context: int | str | None = None,
|
|
1089
|
+
execution_context: int | str | None = None,
|
|
1090
|
+
undo: bool | None = None,
|
|
1091
|
+
/,
|
|
1350
1092
|
) -> None:
|
|
1351
|
-
"""Create an Empty object which will be copying movement of active track
|
|
1352
|
-
|
|
1353
|
-
:type execution_context: int | str | None
|
|
1354
|
-
:type undo: bool | None
|
|
1355
|
-
"""
|
|
1093
|
+
"""Create an Empty object which will be copying movement of active track"""
|
|
1356
1094
|
|
|
1357
1095
|
def tracking_object_new(
|
|
1358
|
-
execution_context: int | str | None = None,
|
|
1096
|
+
execution_context: int | str | None = None,
|
|
1097
|
+
undo: bool | None = None,
|
|
1098
|
+
/,
|
|
1359
1099
|
) -> None:
|
|
1360
|
-
"""Add new object for tracking
|
|
1361
|
-
|
|
1362
|
-
:type execution_context: int | str | None
|
|
1363
|
-
:type undo: bool | None
|
|
1364
|
-
"""
|
|
1100
|
+
"""Add new object for tracking"""
|
|
1365
1101
|
|
|
1366
1102
|
def tracking_object_remove(
|
|
1367
|
-
execution_context: int | str | None = None,
|
|
1103
|
+
execution_context: int | str | None = None,
|
|
1104
|
+
undo: bool | None = None,
|
|
1105
|
+
/,
|
|
1368
1106
|
) -> None:
|
|
1369
|
-
"""Remove object for tracking
|
|
1370
|
-
|
|
1371
|
-
:type execution_context: int | str | None
|
|
1372
|
-
:type undo: bool | None
|
|
1373
|
-
"""
|
|
1107
|
+
"""Remove object for tracking"""
|
|
1374
1108
|
|
|
1375
1109
|
def tracking_settings_preset_add(
|
|
1376
1110
|
execution_context: int | str | None = None,
|
|
@@ -1383,24 +1117,17 @@ def tracking_settings_preset_add(
|
|
|
1383
1117
|
) -> None:
|
|
1384
1118
|
"""Add or remove a motion tracking settings preset
|
|
1385
1119
|
|
|
1386
|
-
:type execution_context: int | str | None
|
|
1387
|
-
:type undo: bool | None
|
|
1388
1120
|
:param name: Name, Name of the preset, used to make the path name
|
|
1389
|
-
:type name: str
|
|
1390
1121
|
:param remove_name: remove_name
|
|
1391
|
-
:type remove_name: bool | None
|
|
1392
1122
|
:param remove_active: remove_active
|
|
1393
|
-
:type remove_active: bool | None
|
|
1394
1123
|
"""
|
|
1395
1124
|
|
|
1396
1125
|
def update_image_from_plane_marker(
|
|
1397
|
-
execution_context: int | str | None = None,
|
|
1126
|
+
execution_context: int | str | None = None,
|
|
1127
|
+
undo: bool | None = None,
|
|
1128
|
+
/,
|
|
1398
1129
|
) -> None:
|
|
1399
|
-
"""Update current image used by plane marker from the content of the plane marker
|
|
1400
|
-
|
|
1401
|
-
:type execution_context: int | str | None
|
|
1402
|
-
:type undo: bool | None
|
|
1403
|
-
"""
|
|
1130
|
+
"""Update current image used by plane marker from the content of the plane marker"""
|
|
1404
1131
|
|
|
1405
1132
|
def view_all(
|
|
1406
1133
|
execution_context: int | str | None = None,
|
|
@@ -1411,29 +1138,22 @@ def view_all(
|
|
|
1411
1138
|
) -> None:
|
|
1412
1139
|
"""View whole image with markers
|
|
1413
1140
|
|
|
1414
|
-
:type execution_context: int | str | None
|
|
1415
|
-
:type undo: bool | None
|
|
1416
1141
|
:param fit_view: Fit View, Fit frame to the viewport
|
|
1417
|
-
:type fit_view: bool | None
|
|
1418
1142
|
"""
|
|
1419
1143
|
|
|
1420
1144
|
def view_center_cursor(
|
|
1421
|
-
execution_context: int | str | None = None,
|
|
1145
|
+
execution_context: int | str | None = None,
|
|
1146
|
+
undo: bool | None = None,
|
|
1147
|
+
/,
|
|
1422
1148
|
) -> None:
|
|
1423
|
-
"""Center the view so that the cursor is in the middle of the view
|
|
1424
|
-
|
|
1425
|
-
:type execution_context: int | str | None
|
|
1426
|
-
:type undo: bool | None
|
|
1427
|
-
"""
|
|
1149
|
+
"""Center the view so that the cursor is in the middle of the view"""
|
|
1428
1150
|
|
|
1429
1151
|
def view_ndof(
|
|
1430
|
-
execution_context: int | str | None = None,
|
|
1152
|
+
execution_context: int | str | None = None,
|
|
1153
|
+
undo: bool | None = None,
|
|
1154
|
+
/,
|
|
1431
1155
|
) -> None:
|
|
1432
|
-
"""Use a 3D mouse device to pan/zoom the view
|
|
1433
|
-
|
|
1434
|
-
:type execution_context: int | str | None
|
|
1435
|
-
:type undo: bool | None
|
|
1436
|
-
"""
|
|
1156
|
+
"""Use a 3D mouse device to pan/zoom the view"""
|
|
1437
1157
|
|
|
1438
1158
|
def view_pan(
|
|
1439
1159
|
execution_context: int | str | None = None,
|
|
@@ -1444,20 +1164,15 @@ def view_pan(
|
|
|
1444
1164
|
) -> None:
|
|
1445
1165
|
"""Pan the view
|
|
1446
1166
|
|
|
1447
|
-
:type execution_context: int | str | None
|
|
1448
|
-
:type undo: bool | None
|
|
1449
1167
|
:param offset: Offset, Offset in floating-point units, 1.0 is the width and height of the image
|
|
1450
|
-
:type offset: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1451
1168
|
"""
|
|
1452
1169
|
|
|
1453
1170
|
def view_selected(
|
|
1454
|
-
execution_context: int | str | None = None,
|
|
1171
|
+
execution_context: int | str | None = None,
|
|
1172
|
+
undo: bool | None = None,
|
|
1173
|
+
/,
|
|
1455
1174
|
) -> None:
|
|
1456
|
-
"""View all selected elements
|
|
1457
|
-
|
|
1458
|
-
:type execution_context: int | str | None
|
|
1459
|
-
:type undo: bool | None
|
|
1460
|
-
"""
|
|
1175
|
+
"""View all selected elements"""
|
|
1461
1176
|
|
|
1462
1177
|
def view_zoom(
|
|
1463
1178
|
execution_context: int | str | None = None,
|
|
@@ -1469,12 +1184,8 @@ def view_zoom(
|
|
|
1469
1184
|
) -> None:
|
|
1470
1185
|
"""Zoom in/out the view
|
|
1471
1186
|
|
|
1472
|
-
:type execution_context: int | str | None
|
|
1473
|
-
:type undo: bool | None
|
|
1474
1187
|
:param factor: Factor, Zoom factor, values higher than 1.0 zoom in, lower values zoom out
|
|
1475
|
-
:type factor: float | None
|
|
1476
1188
|
:param use_cursor_init: Use Mouse Position, Allow the initial mouse position to be used
|
|
1477
|
-
:type use_cursor_init: bool | None
|
|
1478
1189
|
"""
|
|
1479
1190
|
|
|
1480
1191
|
def view_zoom_in(
|
|
@@ -1486,10 +1197,7 @@ def view_zoom_in(
|
|
|
1486
1197
|
) -> None:
|
|
1487
1198
|
"""Zoom in the view
|
|
1488
1199
|
|
|
1489
|
-
:type execution_context: int | str | None
|
|
1490
|
-
:type undo: bool | None
|
|
1491
1200
|
:param location: Location, Cursor location in screen coordinates
|
|
1492
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1493
1201
|
"""
|
|
1494
1202
|
|
|
1495
1203
|
def view_zoom_out(
|
|
@@ -1501,10 +1209,7 @@ def view_zoom_out(
|
|
|
1501
1209
|
) -> None:
|
|
1502
1210
|
"""Zoom out the view
|
|
1503
1211
|
|
|
1504
|
-
:type execution_context: int | str | None
|
|
1505
|
-
:type undo: bool | None
|
|
1506
1212
|
:param location: Location, Cursor location in normalized (0.0 to 1.0) coordinates
|
|
1507
|
-
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
1508
1213
|
"""
|
|
1509
1214
|
|
|
1510
1215
|
def view_zoom_ratio(
|
|
@@ -1516,8 +1221,5 @@ def view_zoom_ratio(
|
|
|
1516
1221
|
) -> None:
|
|
1517
1222
|
"""Set the zoom ratio (based on clip size)
|
|
1518
1223
|
|
|
1519
|
-
:type execution_context: int | str | None
|
|
1520
|
-
:type undo: bool | None
|
|
1521
1224
|
:param ratio: Ratio, Zoom ratio, 1.0 is 1:1, higher is zoomed in, lower is zoomed out
|
|
1522
|
-
:type ratio: float | None
|
|
1523
1225
|
"""
|