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
bl_ui/space_clip/__init__.pyi
CHANGED
|
@@ -2,12 +2,13 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import _bpy_types
|
|
5
6
|
import bl_ui.properties_grease_pencil_common
|
|
6
7
|
import bl_ui.properties_mask_common
|
|
7
8
|
import bl_ui.utils
|
|
8
9
|
import bpy.types
|
|
9
10
|
|
|
10
|
-
class CLIP_HT_header(
|
|
11
|
+
class CLIP_HT_header(_bpy_types.Header):
|
|
11
12
|
bl_rna: typing.Any
|
|
12
13
|
bl_space_type: typing.Any
|
|
13
14
|
id_data: typing.Any
|
|
@@ -16,14 +17,12 @@ class CLIP_HT_header(bpy.types.Header):
|
|
|
16
17
|
"""
|
|
17
18
|
|
|
18
19
|
:return: The RNA type or default when not found.
|
|
19
|
-
:rtype: bpy.types.Struct
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
22
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
:return: The class or default when not found.
|
|
26
|
-
:rtype: typing.Any
|
|
27
26
|
"""
|
|
28
27
|
|
|
29
28
|
def draw(self, context) -> None:
|
|
@@ -32,7 +31,7 @@ class CLIP_HT_header(bpy.types.Header):
|
|
|
32
31
|
:param context:
|
|
33
32
|
"""
|
|
34
33
|
|
|
35
|
-
class CLIP_MT_clip(
|
|
34
|
+
class CLIP_MT_clip(_bpy_types.Menu):
|
|
36
35
|
bl_label: typing.Any
|
|
37
36
|
bl_rna: typing.Any
|
|
38
37
|
bl_translation_context: typing.Any
|
|
@@ -42,14 +41,12 @@ class CLIP_MT_clip(bpy.types.Menu):
|
|
|
42
41
|
"""
|
|
43
42
|
|
|
44
43
|
:return: The RNA type or default when not found.
|
|
45
|
-
:rtype: bpy.types.Struct
|
|
46
44
|
"""
|
|
47
45
|
|
|
48
46
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
49
47
|
"""
|
|
50
48
|
|
|
51
49
|
:return: The class or default when not found.
|
|
52
|
-
:rtype: typing.Any
|
|
53
50
|
"""
|
|
54
51
|
|
|
55
52
|
def draw(self, context) -> None:
|
|
@@ -58,7 +55,7 @@ class CLIP_MT_clip(bpy.types.Menu):
|
|
|
58
55
|
:param context:
|
|
59
56
|
"""
|
|
60
57
|
|
|
61
|
-
class CLIP_MT_marker_pie(
|
|
58
|
+
class CLIP_MT_marker_pie(_bpy_types.Menu):
|
|
62
59
|
bl_label: typing.Any
|
|
63
60
|
bl_rna: typing.Any
|
|
64
61
|
id_data: typing.Any
|
|
@@ -67,14 +64,12 @@ class CLIP_MT_marker_pie(bpy.types.Menu):
|
|
|
67
64
|
"""
|
|
68
65
|
|
|
69
66
|
:return: The RNA type or default when not found.
|
|
70
|
-
:rtype: bpy.types.Struct
|
|
71
67
|
"""
|
|
72
68
|
|
|
73
69
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
74
70
|
"""
|
|
75
71
|
|
|
76
72
|
:return: The class or default when not found.
|
|
77
|
-
:rtype: typing.Any
|
|
78
73
|
"""
|
|
79
74
|
|
|
80
75
|
def draw(self, context) -> None:
|
|
@@ -90,7 +85,7 @@ class CLIP_MT_marker_pie(bpy.types.Menu):
|
|
|
90
85
|
:param context:
|
|
91
86
|
"""
|
|
92
87
|
|
|
93
|
-
class CLIP_MT_masking_editor_menus(
|
|
88
|
+
class CLIP_MT_masking_editor_menus(_bpy_types.Menu):
|
|
94
89
|
bl_idname: typing.Any
|
|
95
90
|
bl_label: typing.Any
|
|
96
91
|
bl_rna: typing.Any
|
|
@@ -100,14 +95,12 @@ class CLIP_MT_masking_editor_menus(bpy.types.Menu):
|
|
|
100
95
|
"""
|
|
101
96
|
|
|
102
97
|
:return: The RNA type or default when not found.
|
|
103
|
-
:rtype: bpy.types.Struct
|
|
104
98
|
"""
|
|
105
99
|
|
|
106
100
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
107
101
|
"""
|
|
108
102
|
|
|
109
103
|
:return: The class or default when not found.
|
|
110
|
-
:rtype: typing.Any
|
|
111
104
|
"""
|
|
112
105
|
|
|
113
106
|
def draw(self, context) -> None:
|
|
@@ -116,7 +109,7 @@ class CLIP_MT_masking_editor_menus(bpy.types.Menu):
|
|
|
116
109
|
:param context:
|
|
117
110
|
"""
|
|
118
111
|
|
|
119
|
-
class CLIP_MT_pivot_pie(
|
|
112
|
+
class CLIP_MT_pivot_pie(_bpy_types.Menu):
|
|
120
113
|
bl_label: typing.Any
|
|
121
114
|
bl_rna: typing.Any
|
|
122
115
|
id_data: typing.Any
|
|
@@ -125,14 +118,12 @@ class CLIP_MT_pivot_pie(bpy.types.Menu):
|
|
|
125
118
|
"""
|
|
126
119
|
|
|
127
120
|
:return: The RNA type or default when not found.
|
|
128
|
-
:rtype: bpy.types.Struct
|
|
129
121
|
"""
|
|
130
122
|
|
|
131
123
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
132
124
|
"""
|
|
133
125
|
|
|
134
126
|
:return: The class or default when not found.
|
|
135
|
-
:rtype: typing.Any
|
|
136
127
|
"""
|
|
137
128
|
|
|
138
129
|
def draw(self, context) -> None:
|
|
@@ -141,7 +132,7 @@ class CLIP_MT_pivot_pie(bpy.types.Menu):
|
|
|
141
132
|
:param context:
|
|
142
133
|
"""
|
|
143
134
|
|
|
144
|
-
class CLIP_MT_plane_track_image_context_menu(
|
|
135
|
+
class CLIP_MT_plane_track_image_context_menu(_bpy_types.Menu):
|
|
145
136
|
bl_label: typing.Any
|
|
146
137
|
bl_rna: typing.Any
|
|
147
138
|
id_data: typing.Any
|
|
@@ -150,14 +141,12 @@ class CLIP_MT_plane_track_image_context_menu(bpy.types.Menu):
|
|
|
150
141
|
"""
|
|
151
142
|
|
|
152
143
|
:return: The RNA type or default when not found.
|
|
153
|
-
:rtype: bpy.types.Struct
|
|
154
144
|
"""
|
|
155
145
|
|
|
156
146
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
157
147
|
"""
|
|
158
148
|
|
|
159
149
|
:return: The class or default when not found.
|
|
160
|
-
:rtype: typing.Any
|
|
161
150
|
"""
|
|
162
151
|
|
|
163
152
|
def draw(self, _context) -> None:
|
|
@@ -166,7 +155,7 @@ class CLIP_MT_plane_track_image_context_menu(bpy.types.Menu):
|
|
|
166
155
|
:param _context:
|
|
167
156
|
"""
|
|
168
157
|
|
|
169
|
-
class CLIP_MT_proxy(
|
|
158
|
+
class CLIP_MT_proxy(_bpy_types.Menu):
|
|
170
159
|
bl_label: typing.Any
|
|
171
160
|
bl_rna: typing.Any
|
|
172
161
|
id_data: typing.Any
|
|
@@ -175,14 +164,12 @@ class CLIP_MT_proxy(bpy.types.Menu):
|
|
|
175
164
|
"""
|
|
176
165
|
|
|
177
166
|
:return: The RNA type or default when not found.
|
|
178
|
-
:rtype: bpy.types.Struct
|
|
179
167
|
"""
|
|
180
168
|
|
|
181
169
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
182
170
|
"""
|
|
183
171
|
|
|
184
172
|
:return: The class or default when not found.
|
|
185
|
-
:rtype: typing.Any
|
|
186
173
|
"""
|
|
187
174
|
|
|
188
175
|
def draw(self, _context) -> None:
|
|
@@ -191,7 +178,7 @@ class CLIP_MT_proxy(bpy.types.Menu):
|
|
|
191
178
|
:param _context:
|
|
192
179
|
"""
|
|
193
180
|
|
|
194
|
-
class CLIP_MT_reconstruction(
|
|
181
|
+
class CLIP_MT_reconstruction(_bpy_types.Menu):
|
|
195
182
|
bl_label: typing.Any
|
|
196
183
|
bl_rna: typing.Any
|
|
197
184
|
id_data: typing.Any
|
|
@@ -200,14 +187,12 @@ class CLIP_MT_reconstruction(bpy.types.Menu):
|
|
|
200
187
|
"""
|
|
201
188
|
|
|
202
189
|
:return: The RNA type or default when not found.
|
|
203
|
-
:rtype: bpy.types.Struct
|
|
204
190
|
"""
|
|
205
191
|
|
|
206
192
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
207
193
|
"""
|
|
208
194
|
|
|
209
195
|
:return: The class or default when not found.
|
|
210
|
-
:rtype: typing.Any
|
|
211
196
|
"""
|
|
212
197
|
|
|
213
198
|
def draw(self, _context) -> None:
|
|
@@ -216,7 +201,7 @@ class CLIP_MT_reconstruction(bpy.types.Menu):
|
|
|
216
201
|
:param _context:
|
|
217
202
|
"""
|
|
218
203
|
|
|
219
|
-
class CLIP_MT_reconstruction_pie(
|
|
204
|
+
class CLIP_MT_reconstruction_pie(_bpy_types.Menu):
|
|
220
205
|
bl_label: typing.Any
|
|
221
206
|
bl_rna: typing.Any
|
|
222
207
|
id_data: typing.Any
|
|
@@ -225,14 +210,12 @@ class CLIP_MT_reconstruction_pie(bpy.types.Menu):
|
|
|
225
210
|
"""
|
|
226
211
|
|
|
227
212
|
:return: The RNA type or default when not found.
|
|
228
|
-
:rtype: bpy.types.Struct
|
|
229
213
|
"""
|
|
230
214
|
|
|
231
215
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
232
216
|
"""
|
|
233
217
|
|
|
234
218
|
:return: The class or default when not found.
|
|
235
|
-
:rtype: typing.Any
|
|
236
219
|
"""
|
|
237
220
|
|
|
238
221
|
def draw(self, _context) -> None:
|
|
@@ -248,7 +231,7 @@ class CLIP_MT_reconstruction_pie(bpy.types.Menu):
|
|
|
248
231
|
:param context:
|
|
249
232
|
"""
|
|
250
233
|
|
|
251
|
-
class CLIP_MT_select(
|
|
234
|
+
class CLIP_MT_select(_bpy_types.Menu):
|
|
252
235
|
bl_label: typing.Any
|
|
253
236
|
bl_rna: typing.Any
|
|
254
237
|
id_data: typing.Any
|
|
@@ -257,14 +240,12 @@ class CLIP_MT_select(bpy.types.Menu):
|
|
|
257
240
|
"""
|
|
258
241
|
|
|
259
242
|
:return: The RNA type or default when not found.
|
|
260
|
-
:rtype: bpy.types.Struct
|
|
261
243
|
"""
|
|
262
244
|
|
|
263
245
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
264
246
|
"""
|
|
265
247
|
|
|
266
248
|
:return: The class or default when not found.
|
|
267
|
-
:rtype: typing.Any
|
|
268
249
|
"""
|
|
269
250
|
|
|
270
251
|
def draw(self, _context) -> None:
|
|
@@ -273,7 +254,7 @@ class CLIP_MT_select(bpy.types.Menu):
|
|
|
273
254
|
:param _context:
|
|
274
255
|
"""
|
|
275
256
|
|
|
276
|
-
class CLIP_MT_select_graph(
|
|
257
|
+
class CLIP_MT_select_graph(_bpy_types.Menu):
|
|
277
258
|
bl_label: typing.Any
|
|
278
259
|
bl_rna: typing.Any
|
|
279
260
|
id_data: typing.Any
|
|
@@ -282,14 +263,12 @@ class CLIP_MT_select_graph(bpy.types.Menu):
|
|
|
282
263
|
"""
|
|
283
264
|
|
|
284
265
|
:return: The RNA type or default when not found.
|
|
285
|
-
:rtype: bpy.types.Struct
|
|
286
266
|
"""
|
|
287
267
|
|
|
288
268
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
289
269
|
"""
|
|
290
270
|
|
|
291
271
|
:return: The class or default when not found.
|
|
292
|
-
:rtype: typing.Any
|
|
293
272
|
"""
|
|
294
273
|
|
|
295
274
|
def draw(self, _context) -> None:
|
|
@@ -298,7 +277,7 @@ class CLIP_MT_select_graph(bpy.types.Menu):
|
|
|
298
277
|
:param _context:
|
|
299
278
|
"""
|
|
300
279
|
|
|
301
|
-
class CLIP_MT_select_grouped(
|
|
280
|
+
class CLIP_MT_select_grouped(_bpy_types.Menu):
|
|
302
281
|
bl_label: typing.Any
|
|
303
282
|
bl_rna: typing.Any
|
|
304
283
|
id_data: typing.Any
|
|
@@ -307,14 +286,12 @@ class CLIP_MT_select_grouped(bpy.types.Menu):
|
|
|
307
286
|
"""
|
|
308
287
|
|
|
309
288
|
:return: The RNA type or default when not found.
|
|
310
|
-
:rtype: bpy.types.Struct
|
|
311
289
|
"""
|
|
312
290
|
|
|
313
291
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
314
292
|
"""
|
|
315
293
|
|
|
316
294
|
:return: The class or default when not found.
|
|
317
|
-
:rtype: typing.Any
|
|
318
295
|
"""
|
|
319
296
|
|
|
320
297
|
def draw(self, _context) -> None:
|
|
@@ -323,7 +300,7 @@ class CLIP_MT_select_grouped(bpy.types.Menu):
|
|
|
323
300
|
:param _context:
|
|
324
301
|
"""
|
|
325
302
|
|
|
326
|
-
class CLIP_MT_solving_pie(
|
|
303
|
+
class CLIP_MT_solving_pie(_bpy_types.Menu):
|
|
327
304
|
bl_label: typing.Any
|
|
328
305
|
bl_rna: typing.Any
|
|
329
306
|
id_data: typing.Any
|
|
@@ -332,14 +309,12 @@ class CLIP_MT_solving_pie(bpy.types.Menu):
|
|
|
332
309
|
"""
|
|
333
310
|
|
|
334
311
|
:return: The RNA type or default when not found.
|
|
335
|
-
:rtype: bpy.types.Struct
|
|
336
312
|
"""
|
|
337
313
|
|
|
338
314
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
339
315
|
"""
|
|
340
316
|
|
|
341
317
|
:return: The class or default when not found.
|
|
342
|
-
:rtype: typing.Any
|
|
343
318
|
"""
|
|
344
319
|
|
|
345
320
|
def draw(self, context) -> None:
|
|
@@ -355,7 +330,7 @@ class CLIP_MT_solving_pie(bpy.types.Menu):
|
|
|
355
330
|
:param context:
|
|
356
331
|
"""
|
|
357
332
|
|
|
358
|
-
class CLIP_MT_stabilize_2d_context_menu(
|
|
333
|
+
class CLIP_MT_stabilize_2d_context_menu(_bpy_types.Menu):
|
|
359
334
|
bl_label: typing.Any
|
|
360
335
|
bl_rna: typing.Any
|
|
361
336
|
id_data: typing.Any
|
|
@@ -364,14 +339,12 @@ class CLIP_MT_stabilize_2d_context_menu(bpy.types.Menu):
|
|
|
364
339
|
"""
|
|
365
340
|
|
|
366
341
|
:return: The RNA type or default when not found.
|
|
367
|
-
:rtype: bpy.types.Struct
|
|
368
342
|
"""
|
|
369
343
|
|
|
370
344
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
371
345
|
"""
|
|
372
346
|
|
|
373
347
|
:return: The class or default when not found.
|
|
374
|
-
:rtype: typing.Any
|
|
375
348
|
"""
|
|
376
349
|
|
|
377
350
|
def draw(self, _context) -> None:
|
|
@@ -380,7 +353,7 @@ class CLIP_MT_stabilize_2d_context_menu(bpy.types.Menu):
|
|
|
380
353
|
:param _context:
|
|
381
354
|
"""
|
|
382
355
|
|
|
383
|
-
class CLIP_MT_stabilize_2d_rotation_context_menu(
|
|
356
|
+
class CLIP_MT_stabilize_2d_rotation_context_menu(_bpy_types.Menu):
|
|
384
357
|
bl_label: typing.Any
|
|
385
358
|
bl_rna: typing.Any
|
|
386
359
|
id_data: typing.Any
|
|
@@ -389,14 +362,12 @@ class CLIP_MT_stabilize_2d_rotation_context_menu(bpy.types.Menu):
|
|
|
389
362
|
"""
|
|
390
363
|
|
|
391
364
|
:return: The RNA type or default when not found.
|
|
392
|
-
:rtype: bpy.types.Struct
|
|
393
365
|
"""
|
|
394
366
|
|
|
395
367
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
396
368
|
"""
|
|
397
369
|
|
|
398
370
|
:return: The class or default when not found.
|
|
399
|
-
:rtype: typing.Any
|
|
400
371
|
"""
|
|
401
372
|
|
|
402
373
|
def draw(self, _context) -> None:
|
|
@@ -405,7 +376,7 @@ class CLIP_MT_stabilize_2d_rotation_context_menu(bpy.types.Menu):
|
|
|
405
376
|
:param _context:
|
|
406
377
|
"""
|
|
407
378
|
|
|
408
|
-
class CLIP_MT_track(
|
|
379
|
+
class CLIP_MT_track(_bpy_types.Menu):
|
|
409
380
|
bl_label: typing.Any
|
|
410
381
|
bl_rna: typing.Any
|
|
411
382
|
id_data: typing.Any
|
|
@@ -414,14 +385,12 @@ class CLIP_MT_track(bpy.types.Menu):
|
|
|
414
385
|
"""
|
|
415
386
|
|
|
416
387
|
:return: The RNA type or default when not found.
|
|
417
|
-
:rtype: bpy.types.Struct
|
|
418
388
|
"""
|
|
419
389
|
|
|
420
390
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
421
391
|
"""
|
|
422
392
|
|
|
423
393
|
:return: The class or default when not found.
|
|
424
|
-
:rtype: typing.Any
|
|
425
394
|
"""
|
|
426
395
|
|
|
427
396
|
def draw(self, context) -> None:
|
|
@@ -430,7 +399,7 @@ class CLIP_MT_track(bpy.types.Menu):
|
|
|
430
399
|
:param context:
|
|
431
400
|
"""
|
|
432
401
|
|
|
433
|
-
class CLIP_MT_track_animation(
|
|
402
|
+
class CLIP_MT_track_animation(_bpy_types.Menu):
|
|
434
403
|
bl_label: typing.Any
|
|
435
404
|
bl_rna: typing.Any
|
|
436
405
|
id_data: typing.Any
|
|
@@ -439,14 +408,12 @@ class CLIP_MT_track_animation(bpy.types.Menu):
|
|
|
439
408
|
"""
|
|
440
409
|
|
|
441
410
|
:return: The RNA type or default when not found.
|
|
442
|
-
:rtype: bpy.types.Struct
|
|
443
411
|
"""
|
|
444
412
|
|
|
445
413
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
446
414
|
"""
|
|
447
415
|
|
|
448
416
|
:return: The class or default when not found.
|
|
449
|
-
:rtype: typing.Any
|
|
450
417
|
"""
|
|
451
418
|
|
|
452
419
|
def draw(self, _context) -> None:
|
|
@@ -455,7 +422,7 @@ class CLIP_MT_track_animation(bpy.types.Menu):
|
|
|
455
422
|
:param _context:
|
|
456
423
|
"""
|
|
457
424
|
|
|
458
|
-
class CLIP_MT_track_cleanup(
|
|
425
|
+
class CLIP_MT_track_cleanup(_bpy_types.Menu):
|
|
459
426
|
bl_label: typing.Any
|
|
460
427
|
bl_rna: typing.Any
|
|
461
428
|
id_data: typing.Any
|
|
@@ -464,14 +431,12 @@ class CLIP_MT_track_cleanup(bpy.types.Menu):
|
|
|
464
431
|
"""
|
|
465
432
|
|
|
466
433
|
:return: The RNA type or default when not found.
|
|
467
|
-
:rtype: bpy.types.Struct
|
|
468
434
|
"""
|
|
469
435
|
|
|
470
436
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
471
437
|
"""
|
|
472
438
|
|
|
473
439
|
:return: The class or default when not found.
|
|
474
|
-
:rtype: typing.Any
|
|
475
440
|
"""
|
|
476
441
|
|
|
477
442
|
def draw(self, _context) -> None:
|
|
@@ -480,7 +445,7 @@ class CLIP_MT_track_cleanup(bpy.types.Menu):
|
|
|
480
445
|
:param _context:
|
|
481
446
|
"""
|
|
482
447
|
|
|
483
|
-
class CLIP_MT_track_clear(
|
|
448
|
+
class CLIP_MT_track_clear(_bpy_types.Menu):
|
|
484
449
|
bl_label: typing.Any
|
|
485
450
|
bl_rna: typing.Any
|
|
486
451
|
id_data: typing.Any
|
|
@@ -489,14 +454,12 @@ class CLIP_MT_track_clear(bpy.types.Menu):
|
|
|
489
454
|
"""
|
|
490
455
|
|
|
491
456
|
:return: The RNA type or default when not found.
|
|
492
|
-
:rtype: bpy.types.Struct
|
|
493
457
|
"""
|
|
494
458
|
|
|
495
459
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
496
460
|
"""
|
|
497
461
|
|
|
498
462
|
:return: The class or default when not found.
|
|
499
|
-
:rtype: typing.Any
|
|
500
463
|
"""
|
|
501
464
|
|
|
502
465
|
def draw(self, _context) -> None:
|
|
@@ -505,7 +468,7 @@ class CLIP_MT_track_clear(bpy.types.Menu):
|
|
|
505
468
|
:param _context:
|
|
506
469
|
"""
|
|
507
470
|
|
|
508
|
-
class CLIP_MT_track_motion(
|
|
471
|
+
class CLIP_MT_track_motion(_bpy_types.Menu):
|
|
509
472
|
bl_label: typing.Any
|
|
510
473
|
bl_rna: typing.Any
|
|
511
474
|
id_data: typing.Any
|
|
@@ -514,14 +477,12 @@ class CLIP_MT_track_motion(bpy.types.Menu):
|
|
|
514
477
|
"""
|
|
515
478
|
|
|
516
479
|
:return: The RNA type or default when not found.
|
|
517
|
-
:rtype: bpy.types.Struct
|
|
518
480
|
"""
|
|
519
481
|
|
|
520
482
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
521
483
|
"""
|
|
522
484
|
|
|
523
485
|
:return: The class or default when not found.
|
|
524
|
-
:rtype: typing.Any
|
|
525
486
|
"""
|
|
526
487
|
|
|
527
488
|
def draw(self, _context) -> None:
|
|
@@ -530,7 +491,7 @@ class CLIP_MT_track_motion(bpy.types.Menu):
|
|
|
530
491
|
:param _context:
|
|
531
492
|
"""
|
|
532
493
|
|
|
533
|
-
class CLIP_MT_track_refine(
|
|
494
|
+
class CLIP_MT_track_refine(_bpy_types.Menu):
|
|
534
495
|
bl_label: typing.Any
|
|
535
496
|
bl_rna: typing.Any
|
|
536
497
|
id_data: typing.Any
|
|
@@ -539,14 +500,12 @@ class CLIP_MT_track_refine(bpy.types.Menu):
|
|
|
539
500
|
"""
|
|
540
501
|
|
|
541
502
|
:return: The RNA type or default when not found.
|
|
542
|
-
:rtype: bpy.types.Struct
|
|
543
503
|
"""
|
|
544
504
|
|
|
545
505
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
546
506
|
"""
|
|
547
507
|
|
|
548
508
|
:return: The class or default when not found.
|
|
549
|
-
:rtype: typing.Any
|
|
550
509
|
"""
|
|
551
510
|
|
|
552
511
|
def draw(self, _context) -> None:
|
|
@@ -555,7 +514,7 @@ class CLIP_MT_track_refine(bpy.types.Menu):
|
|
|
555
514
|
:param _context:
|
|
556
515
|
"""
|
|
557
516
|
|
|
558
|
-
class CLIP_MT_track_transform(
|
|
517
|
+
class CLIP_MT_track_transform(_bpy_types.Menu):
|
|
559
518
|
bl_label: typing.Any
|
|
560
519
|
bl_rna: typing.Any
|
|
561
520
|
id_data: typing.Any
|
|
@@ -564,14 +523,12 @@ class CLIP_MT_track_transform(bpy.types.Menu):
|
|
|
564
523
|
"""
|
|
565
524
|
|
|
566
525
|
:return: The RNA type or default when not found.
|
|
567
|
-
:rtype: bpy.types.Struct
|
|
568
526
|
"""
|
|
569
527
|
|
|
570
528
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
571
529
|
"""
|
|
572
530
|
|
|
573
531
|
:return: The class or default when not found.
|
|
574
|
-
:rtype: typing.Any
|
|
575
532
|
"""
|
|
576
533
|
|
|
577
534
|
def draw(self, _context) -> None:
|
|
@@ -580,7 +537,7 @@ class CLIP_MT_track_transform(bpy.types.Menu):
|
|
|
580
537
|
:param _context:
|
|
581
538
|
"""
|
|
582
539
|
|
|
583
|
-
class CLIP_MT_track_visibility(
|
|
540
|
+
class CLIP_MT_track_visibility(_bpy_types.Menu):
|
|
584
541
|
bl_label: typing.Any
|
|
585
542
|
bl_rna: typing.Any
|
|
586
543
|
id_data: typing.Any
|
|
@@ -589,14 +546,12 @@ class CLIP_MT_track_visibility(bpy.types.Menu):
|
|
|
589
546
|
"""
|
|
590
547
|
|
|
591
548
|
:return: The RNA type or default when not found.
|
|
592
|
-
:rtype: bpy.types.Struct
|
|
593
549
|
"""
|
|
594
550
|
|
|
595
551
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
596
552
|
"""
|
|
597
553
|
|
|
598
554
|
:return: The class or default when not found.
|
|
599
|
-
:rtype: typing.Any
|
|
600
555
|
"""
|
|
601
556
|
|
|
602
557
|
def draw(self, _context) -> None:
|
|
@@ -605,7 +560,7 @@ class CLIP_MT_track_visibility(bpy.types.Menu):
|
|
|
605
560
|
:param _context:
|
|
606
561
|
"""
|
|
607
562
|
|
|
608
|
-
class CLIP_MT_tracking_context_menu(
|
|
563
|
+
class CLIP_MT_tracking_context_menu(_bpy_types.Menu):
|
|
609
564
|
bl_label: typing.Any
|
|
610
565
|
bl_rna: typing.Any
|
|
611
566
|
id_data: typing.Any
|
|
@@ -614,14 +569,12 @@ class CLIP_MT_tracking_context_menu(bpy.types.Menu):
|
|
|
614
569
|
"""
|
|
615
570
|
|
|
616
571
|
:return: The RNA type or default when not found.
|
|
617
|
-
:rtype: bpy.types.Struct
|
|
618
572
|
"""
|
|
619
573
|
|
|
620
574
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
621
575
|
"""
|
|
622
576
|
|
|
623
577
|
:return: The class or default when not found.
|
|
624
|
-
:rtype: typing.Any
|
|
625
578
|
"""
|
|
626
579
|
|
|
627
580
|
def draw(self, context) -> None:
|
|
@@ -637,7 +590,7 @@ class CLIP_MT_tracking_context_menu(bpy.types.Menu):
|
|
|
637
590
|
:param context:
|
|
638
591
|
"""
|
|
639
592
|
|
|
640
|
-
class CLIP_MT_tracking_editor_menus(
|
|
593
|
+
class CLIP_MT_tracking_editor_menus(_bpy_types.Menu):
|
|
641
594
|
bl_idname: typing.Any
|
|
642
595
|
bl_label: typing.Any
|
|
643
596
|
bl_rna: typing.Any
|
|
@@ -647,14 +600,12 @@ class CLIP_MT_tracking_editor_menus(bpy.types.Menu):
|
|
|
647
600
|
"""
|
|
648
601
|
|
|
649
602
|
:return: The RNA type or default when not found.
|
|
650
|
-
:rtype: bpy.types.Struct
|
|
651
603
|
"""
|
|
652
604
|
|
|
653
605
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
654
606
|
"""
|
|
655
607
|
|
|
656
608
|
:return: The class or default when not found.
|
|
657
|
-
:rtype: typing.Any
|
|
658
609
|
"""
|
|
659
610
|
|
|
660
611
|
def draw(self, context) -> None:
|
|
@@ -663,7 +614,7 @@ class CLIP_MT_tracking_editor_menus(bpy.types.Menu):
|
|
|
663
614
|
:param context:
|
|
664
615
|
"""
|
|
665
616
|
|
|
666
|
-
class CLIP_MT_tracking_pie(
|
|
617
|
+
class CLIP_MT_tracking_pie(_bpy_types.Menu):
|
|
667
618
|
bl_label: typing.Any
|
|
668
619
|
bl_rna: typing.Any
|
|
669
620
|
bl_translation_context: typing.Any
|
|
@@ -673,14 +624,12 @@ class CLIP_MT_tracking_pie(bpy.types.Menu):
|
|
|
673
624
|
"""
|
|
674
625
|
|
|
675
626
|
:return: The RNA type or default when not found.
|
|
676
|
-
:rtype: bpy.types.Struct
|
|
677
627
|
"""
|
|
678
628
|
|
|
679
629
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
680
630
|
"""
|
|
681
631
|
|
|
682
632
|
:return: The class or default when not found.
|
|
683
|
-
:rtype: typing.Any
|
|
684
633
|
"""
|
|
685
634
|
|
|
686
635
|
def draw(self, _context) -> None:
|
|
@@ -696,7 +645,7 @@ class CLIP_MT_tracking_pie(bpy.types.Menu):
|
|
|
696
645
|
:param context:
|
|
697
646
|
"""
|
|
698
647
|
|
|
699
|
-
class CLIP_MT_view(
|
|
648
|
+
class CLIP_MT_view(_bpy_types.Menu):
|
|
700
649
|
bl_label: typing.Any
|
|
701
650
|
bl_rna: typing.Any
|
|
702
651
|
id_data: typing.Any
|
|
@@ -705,14 +654,12 @@ class CLIP_MT_view(bpy.types.Menu):
|
|
|
705
654
|
"""
|
|
706
655
|
|
|
707
656
|
:return: The RNA type or default when not found.
|
|
708
|
-
:rtype: bpy.types.Struct
|
|
709
657
|
"""
|
|
710
658
|
|
|
711
659
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
712
660
|
"""
|
|
713
661
|
|
|
714
662
|
:return: The class or default when not found.
|
|
715
|
-
:rtype: typing.Any
|
|
716
663
|
"""
|
|
717
664
|
|
|
718
665
|
def draw(self, context) -> None:
|
|
@@ -721,7 +668,7 @@ class CLIP_MT_view(bpy.types.Menu):
|
|
|
721
668
|
:param context:
|
|
722
669
|
"""
|
|
723
670
|
|
|
724
|
-
class CLIP_MT_view_pie(
|
|
671
|
+
class CLIP_MT_view_pie(_bpy_types.Menu):
|
|
725
672
|
bl_label: typing.Any
|
|
726
673
|
bl_rna: typing.Any
|
|
727
674
|
id_data: typing.Any
|
|
@@ -730,14 +677,12 @@ class CLIP_MT_view_pie(bpy.types.Menu):
|
|
|
730
677
|
"""
|
|
731
678
|
|
|
732
679
|
:return: The RNA type or default when not found.
|
|
733
|
-
:rtype: bpy.types.Struct
|
|
734
680
|
"""
|
|
735
681
|
|
|
736
682
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
737
683
|
"""
|
|
738
684
|
|
|
739
685
|
:return: The class or default when not found.
|
|
740
|
-
:rtype: typing.Any
|
|
741
686
|
"""
|
|
742
687
|
|
|
743
688
|
def draw(self, context) -> None:
|
|
@@ -753,7 +698,7 @@ class CLIP_MT_view_pie(bpy.types.Menu):
|
|
|
753
698
|
:param context:
|
|
754
699
|
"""
|
|
755
700
|
|
|
756
|
-
class CLIP_MT_view_zoom(
|
|
701
|
+
class CLIP_MT_view_zoom(_bpy_types.Menu):
|
|
757
702
|
bl_label: typing.Any
|
|
758
703
|
bl_rna: typing.Any
|
|
759
704
|
id_data: typing.Any
|
|
@@ -762,14 +707,12 @@ class CLIP_MT_view_zoom(bpy.types.Menu):
|
|
|
762
707
|
"""
|
|
763
708
|
|
|
764
709
|
:return: The RNA type or default when not found.
|
|
765
|
-
:rtype: bpy.types.Struct
|
|
766
710
|
"""
|
|
767
711
|
|
|
768
712
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
769
713
|
"""
|
|
770
714
|
|
|
771
715
|
:return: The class or default when not found.
|
|
772
|
-
:rtype: typing.Any
|
|
773
716
|
"""
|
|
774
717
|
|
|
775
718
|
def draw(self, context) -> None:
|
|
@@ -778,7 +721,7 @@ class CLIP_MT_view_zoom(bpy.types.Menu):
|
|
|
778
721
|
:param context:
|
|
779
722
|
"""
|
|
780
723
|
|
|
781
|
-
class CLIP_PT_2d_cursor(
|
|
724
|
+
class CLIP_PT_2d_cursor(_bpy_types.Panel):
|
|
782
725
|
bl_category: typing.Any
|
|
783
726
|
bl_label: typing.Any
|
|
784
727
|
bl_region_type: typing.Any
|
|
@@ -790,14 +733,12 @@ class CLIP_PT_2d_cursor(bpy.types.Panel):
|
|
|
790
733
|
"""
|
|
791
734
|
|
|
792
735
|
:return: The RNA type or default when not found.
|
|
793
|
-
:rtype: bpy.types.Struct
|
|
794
736
|
"""
|
|
795
737
|
|
|
796
738
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
797
739
|
"""
|
|
798
740
|
|
|
799
741
|
:return: The class or default when not found.
|
|
800
|
-
:rtype: typing.Any
|
|
801
742
|
"""
|
|
802
743
|
|
|
803
744
|
def draw(self, context) -> None:
|
|
@@ -814,7 +755,7 @@ class CLIP_PT_2d_cursor(bpy.types.Panel):
|
|
|
814
755
|
"""
|
|
815
756
|
|
|
816
757
|
class CLIP_PT_active_mask_point(
|
|
817
|
-
bl_ui.properties_mask_common.MASK_PT_point,
|
|
758
|
+
bl_ui.properties_mask_common.MASK_PT_point, _bpy_types.Panel
|
|
818
759
|
):
|
|
819
760
|
bl_category: typing.Any
|
|
820
761
|
bl_label: typing.Any
|
|
@@ -827,18 +768,16 @@ class CLIP_PT_active_mask_point(
|
|
|
827
768
|
"""
|
|
828
769
|
|
|
829
770
|
:return: The RNA type or default when not found.
|
|
830
|
-
:rtype: bpy.types.Struct
|
|
831
771
|
"""
|
|
832
772
|
|
|
833
773
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
834
774
|
"""
|
|
835
775
|
|
|
836
776
|
:return: The class or default when not found.
|
|
837
|
-
:rtype: typing.Any
|
|
838
777
|
"""
|
|
839
778
|
|
|
840
779
|
class CLIP_PT_active_mask_spline(
|
|
841
|
-
bl_ui.properties_mask_common.MASK_PT_spline,
|
|
780
|
+
bl_ui.properties_mask_common.MASK_PT_spline, _bpy_types.Panel
|
|
842
781
|
):
|
|
843
782
|
bl_category: typing.Any
|
|
844
783
|
bl_label: typing.Any
|
|
@@ -851,17 +790,15 @@ class CLIP_PT_active_mask_spline(
|
|
|
851
790
|
"""
|
|
852
791
|
|
|
853
792
|
:return: The RNA type or default when not found.
|
|
854
|
-
:rtype: bpy.types.Struct
|
|
855
793
|
"""
|
|
856
794
|
|
|
857
795
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
858
796
|
"""
|
|
859
797
|
|
|
860
798
|
:return: The class or default when not found.
|
|
861
|
-
:rtype: typing.Any
|
|
862
799
|
"""
|
|
863
800
|
|
|
864
|
-
class CLIP_PT_animation(CLIP_PT_clip_view_panel,
|
|
801
|
+
class CLIP_PT_animation(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
865
802
|
bl_category: typing.Any
|
|
866
803
|
bl_label: typing.Any
|
|
867
804
|
bl_region_type: typing.Any
|
|
@@ -873,14 +810,12 @@ class CLIP_PT_animation(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
|
873
810
|
"""
|
|
874
811
|
|
|
875
812
|
:return: The RNA type or default when not found.
|
|
876
|
-
:rtype: bpy.types.Struct
|
|
877
813
|
"""
|
|
878
814
|
|
|
879
815
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
880
816
|
"""
|
|
881
817
|
|
|
882
818
|
:return: The class or default when not found.
|
|
883
|
-
:rtype: typing.Any
|
|
884
819
|
"""
|
|
885
820
|
|
|
886
821
|
def draw(self, context) -> None:
|
|
@@ -892,7 +827,7 @@ class CLIP_PT_animation(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
|
892
827
|
class CLIP_PT_annotation(
|
|
893
828
|
CLIP_PT_clip_view_panel,
|
|
894
829
|
bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
|
|
895
|
-
|
|
830
|
+
_bpy_types.Panel,
|
|
896
831
|
):
|
|
897
832
|
bl_category: typing.Any
|
|
898
833
|
bl_label: typing.Any
|
|
@@ -906,17 +841,15 @@ class CLIP_PT_annotation(
|
|
|
906
841
|
"""
|
|
907
842
|
|
|
908
843
|
:return: The RNA type or default when not found.
|
|
909
|
-
:rtype: bpy.types.Struct
|
|
910
844
|
"""
|
|
911
845
|
|
|
912
846
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
913
847
|
"""
|
|
914
848
|
|
|
915
849
|
:return: The class or default when not found.
|
|
916
|
-
:rtype: typing.Any
|
|
917
850
|
"""
|
|
918
851
|
|
|
919
|
-
class CLIP_PT_camera_presets(bl_ui.utils.PresetPanel,
|
|
852
|
+
class CLIP_PT_camera_presets(bl_ui.utils.PresetPanel, _bpy_types.Panel):
|
|
920
853
|
"""Predefined tracking camera intrinsics"""
|
|
921
854
|
|
|
922
855
|
bl_label: typing.Any
|
|
@@ -932,17 +865,15 @@ class CLIP_PT_camera_presets(bl_ui.utils.PresetPanel, bpy.types.Panel):
|
|
|
932
865
|
"""
|
|
933
866
|
|
|
934
867
|
:return: The RNA type or default when not found.
|
|
935
|
-
:rtype: bpy.types.Struct
|
|
936
868
|
"""
|
|
937
869
|
|
|
938
870
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
939
871
|
"""
|
|
940
872
|
|
|
941
873
|
:return: The class or default when not found.
|
|
942
|
-
:rtype: typing.Any
|
|
943
874
|
"""
|
|
944
875
|
|
|
945
|
-
class CLIP_PT_clip_display(
|
|
876
|
+
class CLIP_PT_clip_display(_bpy_types.Panel):
|
|
946
877
|
bl_label: typing.Any
|
|
947
878
|
bl_parent_id: typing.Any
|
|
948
879
|
bl_region_type: typing.Any
|
|
@@ -955,14 +886,12 @@ class CLIP_PT_clip_display(bpy.types.Panel):
|
|
|
955
886
|
"""
|
|
956
887
|
|
|
957
888
|
:return: The RNA type or default when not found.
|
|
958
|
-
:rtype: bpy.types.Struct
|
|
959
889
|
"""
|
|
960
890
|
|
|
961
891
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
962
892
|
"""
|
|
963
893
|
|
|
964
894
|
:return: The class or default when not found.
|
|
965
|
-
:rtype: typing.Any
|
|
966
895
|
"""
|
|
967
896
|
|
|
968
897
|
def draw(self, context) -> None:
|
|
@@ -979,7 +908,7 @@ class CLIP_PT_clip_view_panel:
|
|
|
979
908
|
:param context:
|
|
980
909
|
"""
|
|
981
910
|
|
|
982
|
-
class CLIP_PT_display(
|
|
911
|
+
class CLIP_PT_display(_bpy_types.Panel):
|
|
983
912
|
bl_label: typing.Any
|
|
984
913
|
bl_region_type: typing.Any
|
|
985
914
|
bl_rna: typing.Any
|
|
@@ -991,14 +920,12 @@ class CLIP_PT_display(bpy.types.Panel):
|
|
|
991
920
|
"""
|
|
992
921
|
|
|
993
922
|
:return: The RNA type or default when not found.
|
|
994
|
-
:rtype: bpy.types.Struct
|
|
995
923
|
"""
|
|
996
924
|
|
|
997
925
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
998
926
|
"""
|
|
999
927
|
|
|
1000
928
|
:return: The class or default when not found.
|
|
1001
|
-
:rtype: typing.Any
|
|
1002
929
|
"""
|
|
1003
930
|
|
|
1004
931
|
def draw(self, context) -> None:
|
|
@@ -1007,7 +934,7 @@ class CLIP_PT_display(bpy.types.Panel):
|
|
|
1007
934
|
:param context:
|
|
1008
935
|
"""
|
|
1009
936
|
|
|
1010
|
-
class CLIP_PT_footage(CLIP_PT_clip_view_panel,
|
|
937
|
+
class CLIP_PT_footage(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
1011
938
|
bl_category: typing.Any
|
|
1012
939
|
bl_label: typing.Any
|
|
1013
940
|
bl_region_type: typing.Any
|
|
@@ -1019,14 +946,12 @@ class CLIP_PT_footage(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
|
1019
946
|
"""
|
|
1020
947
|
|
|
1021
948
|
:return: The RNA type or default when not found.
|
|
1022
|
-
:rtype: bpy.types.Struct
|
|
1023
949
|
"""
|
|
1024
950
|
|
|
1025
951
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1026
952
|
"""
|
|
1027
953
|
|
|
1028
954
|
:return: The class or default when not found.
|
|
1029
|
-
:rtype: typing.Any
|
|
1030
955
|
"""
|
|
1031
956
|
|
|
1032
957
|
def draw(self, context) -> None:
|
|
@@ -1035,7 +960,7 @@ class CLIP_PT_footage(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
|
1035
960
|
:param context:
|
|
1036
961
|
"""
|
|
1037
962
|
|
|
1038
|
-
class CLIP_PT_gizmo_display(
|
|
963
|
+
class CLIP_PT_gizmo_display(_bpy_types.Panel):
|
|
1039
964
|
bl_label: typing.Any
|
|
1040
965
|
bl_region_type: typing.Any
|
|
1041
966
|
bl_rna: typing.Any
|
|
@@ -1047,14 +972,12 @@ class CLIP_PT_gizmo_display(bpy.types.Panel):
|
|
|
1047
972
|
"""
|
|
1048
973
|
|
|
1049
974
|
:return: The RNA type or default when not found.
|
|
1050
|
-
:rtype: bpy.types.Struct
|
|
1051
975
|
"""
|
|
1052
976
|
|
|
1053
977
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1054
978
|
"""
|
|
1055
979
|
|
|
1056
980
|
:return: The class or default when not found.
|
|
1057
|
-
:rtype: typing.Any
|
|
1058
981
|
"""
|
|
1059
982
|
|
|
1060
983
|
def draw(self, context) -> None:
|
|
@@ -1063,27 +986,26 @@ class CLIP_PT_gizmo_display(bpy.types.Panel):
|
|
|
1063
986
|
:param context:
|
|
1064
987
|
"""
|
|
1065
988
|
|
|
1066
|
-
class CLIP_PT_marker(CLIP_PT_tracking_panel,
|
|
989
|
+
class CLIP_PT_marker(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1067
990
|
bl_category: typing.Any
|
|
1068
991
|
bl_label: typing.Any
|
|
1069
992
|
bl_options: typing.Any
|
|
1070
993
|
bl_region_type: typing.Any
|
|
1071
994
|
bl_rna: typing.Any
|
|
1072
995
|
bl_space_type: typing.Any
|
|
996
|
+
bl_translation_context: typing.Any
|
|
1073
997
|
id_data: typing.Any
|
|
1074
998
|
|
|
1075
999
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1076
1000
|
"""
|
|
1077
1001
|
|
|
1078
1002
|
:return: The RNA type or default when not found.
|
|
1079
|
-
:rtype: bpy.types.Struct
|
|
1080
1003
|
"""
|
|
1081
1004
|
|
|
1082
1005
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1083
1006
|
"""
|
|
1084
1007
|
|
|
1085
1008
|
:return: The class or default when not found.
|
|
1086
|
-
:rtype: typing.Any
|
|
1087
1009
|
"""
|
|
1088
1010
|
|
|
1089
1011
|
def draw(self, context) -> None:
|
|
@@ -1092,39 +1014,55 @@ class CLIP_PT_marker(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1092
1014
|
:param context:
|
|
1093
1015
|
"""
|
|
1094
1016
|
|
|
1095
|
-
class
|
|
1017
|
+
class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, _bpy_types.Panel):
|
|
1018
|
+
bl_category: typing.Any
|
|
1096
1019
|
bl_label: typing.Any
|
|
1097
|
-
|
|
1020
|
+
bl_options: typing.Any
|
|
1098
1021
|
bl_region_type: typing.Any
|
|
1099
1022
|
bl_rna: typing.Any
|
|
1100
1023
|
bl_space_type: typing.Any
|
|
1101
|
-
bl_ui_units_x: typing.Any
|
|
1102
1024
|
id_data: typing.Any
|
|
1103
1025
|
|
|
1104
1026
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1105
1027
|
"""
|
|
1106
1028
|
|
|
1107
1029
|
:return: The RNA type or default when not found.
|
|
1108
|
-
:rtype: bpy.types.Struct
|
|
1109
1030
|
"""
|
|
1110
1031
|
|
|
1111
1032
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1112
1033
|
"""
|
|
1113
1034
|
|
|
1114
1035
|
:return: The class or default when not found.
|
|
1115
|
-
:rtype: typing.Any
|
|
1116
1036
|
"""
|
|
1117
1037
|
|
|
1118
|
-
|
|
1038
|
+
class CLIP_PT_mask_animation(
|
|
1039
|
+
bl_ui.properties_mask_common.MASK_PT_animation, _bpy_types.Panel
|
|
1040
|
+
):
|
|
1041
|
+
bl_category: typing.Any
|
|
1042
|
+
bl_label: typing.Any
|
|
1043
|
+
bl_options: typing.Any
|
|
1044
|
+
bl_region_type: typing.Any
|
|
1045
|
+
bl_rna: typing.Any
|
|
1046
|
+
bl_space_type: typing.Any
|
|
1047
|
+
id_data: typing.Any
|
|
1048
|
+
|
|
1049
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1119
1050
|
"""
|
|
1120
1051
|
|
|
1121
|
-
:
|
|
1052
|
+
:return: The RNA type or default when not found.
|
|
1053
|
+
"""
|
|
1054
|
+
|
|
1055
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1056
|
+
"""
|
|
1057
|
+
|
|
1058
|
+
:return: The class or default when not found.
|
|
1122
1059
|
"""
|
|
1123
1060
|
|
|
1124
|
-
class
|
|
1061
|
+
class CLIP_PT_mask_layers(
|
|
1062
|
+
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
1063
|
+
):
|
|
1125
1064
|
bl_category: typing.Any
|
|
1126
1065
|
bl_label: typing.Any
|
|
1127
|
-
bl_options: typing.Any
|
|
1128
1066
|
bl_region_type: typing.Any
|
|
1129
1067
|
bl_rna: typing.Any
|
|
1130
1068
|
bl_space_type: typing.Any
|
|
@@ -1134,19 +1072,15 @@ class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
|
|
|
1134
1072
|
"""
|
|
1135
1073
|
|
|
1136
1074
|
:return: The RNA type or default when not found.
|
|
1137
|
-
:rtype: bpy.types.Struct
|
|
1138
1075
|
"""
|
|
1139
1076
|
|
|
1140
1077
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1141
1078
|
"""
|
|
1142
1079
|
|
|
1143
1080
|
:return: The class or default when not found.
|
|
1144
|
-
:rtype: typing.Any
|
|
1145
1081
|
"""
|
|
1146
1082
|
|
|
1147
|
-
class
|
|
1148
|
-
bl_ui.properties_mask_common.MASK_PT_animation, bpy.types.Panel
|
|
1149
|
-
):
|
|
1083
|
+
class CLIP_PT_objects(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
1150
1084
|
bl_category: typing.Any
|
|
1151
1085
|
bl_label: typing.Any
|
|
1152
1086
|
bl_options: typing.Any
|
|
@@ -1159,42 +1093,49 @@ class CLIP_PT_mask_animation(
|
|
|
1159
1093
|
"""
|
|
1160
1094
|
|
|
1161
1095
|
:return: The RNA type or default when not found.
|
|
1162
|
-
:rtype: bpy.types.Struct
|
|
1163
1096
|
"""
|
|
1164
1097
|
|
|
1165
1098
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1166
1099
|
"""
|
|
1167
1100
|
|
|
1168
1101
|
:return: The class or default when not found.
|
|
1169
|
-
:rtype: typing.Any
|
|
1170
1102
|
"""
|
|
1171
1103
|
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1104
|
+
def draw(self, context) -> None:
|
|
1105
|
+
"""
|
|
1106
|
+
|
|
1107
|
+
:param context:
|
|
1108
|
+
"""
|
|
1109
|
+
|
|
1110
|
+
class CLIP_PT_overlay(_bpy_types.Panel):
|
|
1175
1111
|
bl_label: typing.Any
|
|
1176
1112
|
bl_region_type: typing.Any
|
|
1177
1113
|
bl_rna: typing.Any
|
|
1178
1114
|
bl_space_type: typing.Any
|
|
1115
|
+
bl_ui_units_x: typing.Any
|
|
1179
1116
|
id_data: typing.Any
|
|
1180
1117
|
|
|
1181
1118
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1182
1119
|
"""
|
|
1183
1120
|
|
|
1184
1121
|
:return: The RNA type or default when not found.
|
|
1185
|
-
:rtype: bpy.types.Struct
|
|
1186
1122
|
"""
|
|
1187
1123
|
|
|
1188
1124
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1189
1125
|
"""
|
|
1190
1126
|
|
|
1191
1127
|
:return: The class or default when not found.
|
|
1192
|
-
:rtype: typing.Any
|
|
1193
1128
|
"""
|
|
1194
1129
|
|
|
1195
|
-
|
|
1196
|
-
|
|
1130
|
+
def draw(self, _context) -> None:
|
|
1131
|
+
"""
|
|
1132
|
+
|
|
1133
|
+
:param _context:
|
|
1134
|
+
"""
|
|
1135
|
+
|
|
1136
|
+
class CLIP_PT_overlay_display(_bpy_types.Panel):
|
|
1197
1137
|
bl_label: typing.Any
|
|
1138
|
+
bl_parent_id: typing.Any
|
|
1198
1139
|
bl_region_type: typing.Any
|
|
1199
1140
|
bl_rna: typing.Any
|
|
1200
1141
|
bl_space_type: typing.Any
|
|
@@ -1204,20 +1145,23 @@ class CLIP_PT_mask_layers(bl_ui.properties_mask_common.MASK_PT_layers, bpy.types
|
|
|
1204
1145
|
"""
|
|
1205
1146
|
|
|
1206
1147
|
:return: The RNA type or default when not found.
|
|
1207
|
-
:rtype: bpy.types.Struct
|
|
1208
1148
|
"""
|
|
1209
1149
|
|
|
1210
1150
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1211
1151
|
"""
|
|
1212
1152
|
|
|
1213
1153
|
:return: The class or default when not found.
|
|
1214
|
-
:rtype: typing.Any
|
|
1215
1154
|
"""
|
|
1216
1155
|
|
|
1217
|
-
|
|
1218
|
-
|
|
1156
|
+
def draw(self, context) -> None:
|
|
1157
|
+
"""
|
|
1158
|
+
|
|
1159
|
+
:param context:
|
|
1160
|
+
"""
|
|
1161
|
+
|
|
1162
|
+
class CLIP_PT_overlay_guides(_bpy_types.Panel):
|
|
1219
1163
|
bl_label: typing.Any
|
|
1220
|
-
|
|
1164
|
+
bl_parent_id: typing.Any
|
|
1221
1165
|
bl_region_type: typing.Any
|
|
1222
1166
|
bl_rna: typing.Any
|
|
1223
1167
|
bl_space_type: typing.Any
|
|
@@ -1227,14 +1171,12 @@ class CLIP_PT_objects(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
|
1227
1171
|
"""
|
|
1228
1172
|
|
|
1229
1173
|
:return: The RNA type or default when not found.
|
|
1230
|
-
:rtype: bpy.types.Struct
|
|
1231
1174
|
"""
|
|
1232
1175
|
|
|
1233
1176
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1234
1177
|
"""
|
|
1235
1178
|
|
|
1236
1179
|
:return: The class or default when not found.
|
|
1237
|
-
:rtype: typing.Any
|
|
1238
1180
|
"""
|
|
1239
1181
|
|
|
1240
1182
|
def draw(self, context) -> None:
|
|
@@ -1243,7 +1185,36 @@ class CLIP_PT_objects(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
|
1243
1185
|
:param context:
|
|
1244
1186
|
"""
|
|
1245
1187
|
|
|
1246
|
-
class
|
|
1188
|
+
class CLIP_PT_overlay_mask(
|
|
1189
|
+
bl_ui.properties_mask_common.MASK_PT_display, _bpy_types.Panel
|
|
1190
|
+
):
|
|
1191
|
+
bl_label: typing.Any
|
|
1192
|
+
bl_parent_id: typing.Any
|
|
1193
|
+
bl_region_type: typing.Any
|
|
1194
|
+
bl_rna: typing.Any
|
|
1195
|
+
bl_space_type: typing.Any
|
|
1196
|
+
id_data: typing.Any
|
|
1197
|
+
|
|
1198
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1199
|
+
"""
|
|
1200
|
+
|
|
1201
|
+
:return: The RNA type or default when not found.
|
|
1202
|
+
"""
|
|
1203
|
+
|
|
1204
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1205
|
+
"""
|
|
1206
|
+
|
|
1207
|
+
:return: The class or default when not found.
|
|
1208
|
+
"""
|
|
1209
|
+
|
|
1210
|
+
@classmethod
|
|
1211
|
+
def poll(cls, context) -> None:
|
|
1212
|
+
"""
|
|
1213
|
+
|
|
1214
|
+
:param context:
|
|
1215
|
+
"""
|
|
1216
|
+
|
|
1217
|
+
class CLIP_PT_plane_track(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1247
1218
|
bl_category: typing.Any
|
|
1248
1219
|
bl_label: typing.Any
|
|
1249
1220
|
bl_options: typing.Any
|
|
@@ -1256,14 +1227,12 @@ class CLIP_PT_plane_track(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1256
1227
|
"""
|
|
1257
1228
|
|
|
1258
1229
|
:return: The RNA type or default when not found.
|
|
1259
|
-
:rtype: bpy.types.Struct
|
|
1260
1230
|
"""
|
|
1261
1231
|
|
|
1262
1232
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1263
1233
|
"""
|
|
1264
1234
|
|
|
1265
1235
|
:return: The class or default when not found.
|
|
1266
|
-
:rtype: typing.Any
|
|
1267
1236
|
"""
|
|
1268
1237
|
|
|
1269
1238
|
def draw(self, context) -> None:
|
|
@@ -1272,7 +1241,7 @@ class CLIP_PT_plane_track(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1272
1241
|
:param context:
|
|
1273
1242
|
"""
|
|
1274
1243
|
|
|
1275
|
-
class CLIP_PT_proportional_edit(
|
|
1244
|
+
class CLIP_PT_proportional_edit(_bpy_types.Panel):
|
|
1276
1245
|
bl_label: typing.Any
|
|
1277
1246
|
bl_region_type: typing.Any
|
|
1278
1247
|
bl_rna: typing.Any
|
|
@@ -1284,14 +1253,12 @@ class CLIP_PT_proportional_edit(bpy.types.Panel):
|
|
|
1284
1253
|
"""
|
|
1285
1254
|
|
|
1286
1255
|
:return: The RNA type or default when not found.
|
|
1287
|
-
:rtype: bpy.types.Struct
|
|
1288
1256
|
"""
|
|
1289
1257
|
|
|
1290
1258
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1291
1259
|
"""
|
|
1292
1260
|
|
|
1293
1261
|
:return: The class or default when not found.
|
|
1294
|
-
:rtype: typing.Any
|
|
1295
1262
|
"""
|
|
1296
1263
|
|
|
1297
1264
|
def draw(self, context) -> None:
|
|
@@ -1300,7 +1267,7 @@ class CLIP_PT_proportional_edit(bpy.types.Panel):
|
|
|
1300
1267
|
:param context:
|
|
1301
1268
|
"""
|
|
1302
1269
|
|
|
1303
|
-
class CLIP_PT_proxy(CLIP_PT_clip_view_panel,
|
|
1270
|
+
class CLIP_PT_proxy(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
1304
1271
|
bl_category: typing.Any
|
|
1305
1272
|
bl_label: typing.Any
|
|
1306
1273
|
bl_options: typing.Any
|
|
@@ -1313,14 +1280,12 @@ class CLIP_PT_proxy(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
|
1313
1280
|
"""
|
|
1314
1281
|
|
|
1315
1282
|
:return: The RNA type or default when not found.
|
|
1316
|
-
:rtype: bpy.types.Struct
|
|
1317
1283
|
"""
|
|
1318
1284
|
|
|
1319
1285
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1320
1286
|
"""
|
|
1321
1287
|
|
|
1322
1288
|
:return: The class or default when not found.
|
|
1323
|
-
:rtype: typing.Any
|
|
1324
1289
|
"""
|
|
1325
1290
|
|
|
1326
1291
|
def draw(self, context) -> None:
|
|
@@ -1343,7 +1308,7 @@ class CLIP_PT_reconstruction_panel:
|
|
|
1343
1308
|
:param context:
|
|
1344
1309
|
"""
|
|
1345
1310
|
|
|
1346
|
-
class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel,
|
|
1311
|
+
class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, _bpy_types.Panel):
|
|
1347
1312
|
bl_category: typing.Any
|
|
1348
1313
|
bl_label: typing.Any
|
|
1349
1314
|
bl_region_type: typing.Any
|
|
@@ -1355,14 +1320,12 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, bpy.types.Panel):
|
|
|
1355
1320
|
"""
|
|
1356
1321
|
|
|
1357
1322
|
:return: The RNA type or default when not found.
|
|
1358
|
-
:rtype: bpy.types.Struct
|
|
1359
1323
|
"""
|
|
1360
1324
|
|
|
1361
1325
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1362
1326
|
"""
|
|
1363
1327
|
|
|
1364
1328
|
:return: The class or default when not found.
|
|
1365
|
-
:rtype: typing.Any
|
|
1366
1329
|
"""
|
|
1367
1330
|
|
|
1368
1331
|
def draw(self, context) -> None:
|
|
@@ -1384,7 +1347,7 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, bpy.types.Panel):
|
|
|
1384
1347
|
:param context:
|
|
1385
1348
|
"""
|
|
1386
1349
|
|
|
1387
|
-
class CLIP_PT_tools_cleanup(CLIP_PT_tracking_panel,
|
|
1350
|
+
class CLIP_PT_tools_cleanup(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1388
1351
|
bl_category: typing.Any
|
|
1389
1352
|
bl_label: typing.Any
|
|
1390
1353
|
bl_options: typing.Any
|
|
@@ -1397,14 +1360,12 @@ class CLIP_PT_tools_cleanup(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1397
1360
|
"""
|
|
1398
1361
|
|
|
1399
1362
|
:return: The RNA type or default when not found.
|
|
1400
|
-
:rtype: bpy.types.Struct
|
|
1401
1363
|
"""
|
|
1402
1364
|
|
|
1403
1365
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1404
1366
|
"""
|
|
1405
1367
|
|
|
1406
1368
|
:return: The class or default when not found.
|
|
1407
|
-
:rtype: typing.Any
|
|
1408
1369
|
"""
|
|
1409
1370
|
|
|
1410
1371
|
def draw(self, context) -> None:
|
|
@@ -1413,7 +1374,7 @@ class CLIP_PT_tools_cleanup(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1413
1374
|
:param context:
|
|
1414
1375
|
"""
|
|
1415
1376
|
|
|
1416
|
-
class CLIP_PT_tools_clip(
|
|
1377
|
+
class CLIP_PT_tools_clip(_bpy_types.Panel):
|
|
1417
1378
|
bl_category: typing.Any
|
|
1418
1379
|
bl_label: typing.Any
|
|
1419
1380
|
bl_region_type: typing.Any
|
|
@@ -1426,14 +1387,12 @@ class CLIP_PT_tools_clip(bpy.types.Panel):
|
|
|
1426
1387
|
"""
|
|
1427
1388
|
|
|
1428
1389
|
:return: The RNA type or default when not found.
|
|
1429
|
-
:rtype: bpy.types.Struct
|
|
1430
1390
|
"""
|
|
1431
1391
|
|
|
1432
1392
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1433
1393
|
"""
|
|
1434
1394
|
|
|
1435
1395
|
:return: The class or default when not found.
|
|
1436
|
-
:rtype: typing.Any
|
|
1437
1396
|
"""
|
|
1438
1397
|
|
|
1439
1398
|
def draw(self, _context) -> None:
|
|
@@ -1449,7 +1408,7 @@ class CLIP_PT_tools_clip(bpy.types.Panel):
|
|
|
1449
1408
|
:param context:
|
|
1450
1409
|
"""
|
|
1451
1410
|
|
|
1452
|
-
class CLIP_PT_tools_geometry(CLIP_PT_tracking_panel,
|
|
1411
|
+
class CLIP_PT_tools_geometry(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1453
1412
|
bl_category: typing.Any
|
|
1454
1413
|
bl_label: typing.Any
|
|
1455
1414
|
bl_options: typing.Any
|
|
@@ -1462,14 +1421,12 @@ class CLIP_PT_tools_geometry(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1462
1421
|
"""
|
|
1463
1422
|
|
|
1464
1423
|
:return: The RNA type or default when not found.
|
|
1465
|
-
:rtype: bpy.types.Struct
|
|
1466
1424
|
"""
|
|
1467
1425
|
|
|
1468
1426
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1469
1427
|
"""
|
|
1470
1428
|
|
|
1471
1429
|
:return: The class or default when not found.
|
|
1472
|
-
:rtype: typing.Any
|
|
1473
1430
|
"""
|
|
1474
1431
|
|
|
1475
1432
|
def draw(self, _context) -> None:
|
|
@@ -1479,7 +1436,7 @@ class CLIP_PT_tools_geometry(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1479
1436
|
"""
|
|
1480
1437
|
|
|
1481
1438
|
class CLIP_PT_tools_grease_pencil_draw(
|
|
1482
|
-
bl_ui.properties_grease_pencil_common.AnnotationDrawingToolsPanel,
|
|
1439
|
+
bl_ui.properties_grease_pencil_common.AnnotationDrawingToolsPanel, _bpy_types.Panel
|
|
1483
1440
|
):
|
|
1484
1441
|
bl_category: typing.Any
|
|
1485
1442
|
bl_label: typing.Any
|
|
@@ -1492,36 +1449,33 @@ class CLIP_PT_tools_grease_pencil_draw(
|
|
|
1492
1449
|
"""
|
|
1493
1450
|
|
|
1494
1451
|
:return: The RNA type or default when not found.
|
|
1495
|
-
:rtype: bpy.types.Struct
|
|
1496
1452
|
"""
|
|
1497
1453
|
|
|
1498
1454
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1499
1455
|
"""
|
|
1500
1456
|
|
|
1501
1457
|
:return: The class or default when not found.
|
|
1502
|
-
:rtype: typing.Any
|
|
1503
1458
|
"""
|
|
1504
1459
|
|
|
1505
|
-
class CLIP_PT_tools_marker(CLIP_PT_tracking_panel,
|
|
1460
|
+
class CLIP_PT_tools_marker(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1506
1461
|
bl_category: typing.Any
|
|
1507
1462
|
bl_label: typing.Any
|
|
1508
1463
|
bl_region_type: typing.Any
|
|
1509
1464
|
bl_rna: typing.Any
|
|
1510
1465
|
bl_space_type: typing.Any
|
|
1466
|
+
bl_translation_context: typing.Any
|
|
1511
1467
|
id_data: typing.Any
|
|
1512
1468
|
|
|
1513
1469
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1514
1470
|
"""
|
|
1515
1471
|
|
|
1516
1472
|
:return: The RNA type or default when not found.
|
|
1517
|
-
:rtype: bpy.types.Struct
|
|
1518
1473
|
"""
|
|
1519
1474
|
|
|
1520
1475
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1521
1476
|
"""
|
|
1522
1477
|
|
|
1523
1478
|
:return: The class or default when not found.
|
|
1524
|
-
:rtype: typing.Any
|
|
1525
1479
|
"""
|
|
1526
1480
|
|
|
1527
1481
|
def draw(self, _context) -> None:
|
|
@@ -1531,7 +1485,7 @@ class CLIP_PT_tools_marker(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1531
1485
|
"""
|
|
1532
1486
|
|
|
1533
1487
|
class CLIP_PT_tools_mask_tools(
|
|
1534
|
-
bl_ui.properties_mask_common.MASK_PT_tools,
|
|
1488
|
+
bl_ui.properties_mask_common.MASK_PT_tools, _bpy_types.Panel
|
|
1535
1489
|
):
|
|
1536
1490
|
bl_category: typing.Any
|
|
1537
1491
|
bl_label: typing.Any
|
|
@@ -1544,18 +1498,16 @@ class CLIP_PT_tools_mask_tools(
|
|
|
1544
1498
|
"""
|
|
1545
1499
|
|
|
1546
1500
|
:return: The RNA type or default when not found.
|
|
1547
|
-
:rtype: bpy.types.Struct
|
|
1548
1501
|
"""
|
|
1549
1502
|
|
|
1550
1503
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1551
1504
|
"""
|
|
1552
1505
|
|
|
1553
1506
|
:return: The class or default when not found.
|
|
1554
|
-
:rtype: typing.Any
|
|
1555
1507
|
"""
|
|
1556
1508
|
|
|
1557
1509
|
class CLIP_PT_tools_mask_transforms(
|
|
1558
|
-
bl_ui.properties_mask_common.MASK_PT_transforms,
|
|
1510
|
+
bl_ui.properties_mask_common.MASK_PT_transforms, _bpy_types.Panel
|
|
1559
1511
|
):
|
|
1560
1512
|
bl_category: typing.Any
|
|
1561
1513
|
bl_label: typing.Any
|
|
@@ -1568,17 +1520,15 @@ class CLIP_PT_tools_mask_transforms(
|
|
|
1568
1520
|
"""
|
|
1569
1521
|
|
|
1570
1522
|
:return: The RNA type or default when not found.
|
|
1571
|
-
:rtype: bpy.types.Struct
|
|
1572
1523
|
"""
|
|
1573
1524
|
|
|
1574
1525
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1575
1526
|
"""
|
|
1576
1527
|
|
|
1577
1528
|
:return: The class or default when not found.
|
|
1578
|
-
:rtype: typing.Any
|
|
1579
1529
|
"""
|
|
1580
1530
|
|
|
1581
|
-
class CLIP_PT_tools_object(CLIP_PT_reconstruction_panel,
|
|
1531
|
+
class CLIP_PT_tools_object(CLIP_PT_reconstruction_panel, _bpy_types.Panel):
|
|
1582
1532
|
bl_category: typing.Any
|
|
1583
1533
|
bl_label: typing.Any
|
|
1584
1534
|
bl_region_type: typing.Any
|
|
@@ -1590,14 +1540,12 @@ class CLIP_PT_tools_object(CLIP_PT_reconstruction_panel, bpy.types.Panel):
|
|
|
1590
1540
|
"""
|
|
1591
1541
|
|
|
1592
1542
|
:return: The RNA type or default when not found.
|
|
1593
|
-
:rtype: bpy.types.Struct
|
|
1594
1543
|
"""
|
|
1595
1544
|
|
|
1596
1545
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1597
1546
|
"""
|
|
1598
1547
|
|
|
1599
1548
|
:return: The class or default when not found.
|
|
1600
|
-
:rtype: typing.Any
|
|
1601
1549
|
"""
|
|
1602
1550
|
|
|
1603
1551
|
def draw(self, context) -> None:
|
|
@@ -1613,7 +1561,7 @@ class CLIP_PT_tools_object(CLIP_PT_reconstruction_panel, bpy.types.Panel):
|
|
|
1613
1561
|
:param context:
|
|
1614
1562
|
"""
|
|
1615
1563
|
|
|
1616
|
-
class CLIP_PT_tools_orientation(CLIP_PT_tracking_panel,
|
|
1564
|
+
class CLIP_PT_tools_orientation(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1617
1565
|
bl_category: typing.Any
|
|
1618
1566
|
bl_label: typing.Any
|
|
1619
1567
|
bl_region_type: typing.Any
|
|
@@ -1625,14 +1573,12 @@ class CLIP_PT_tools_orientation(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1625
1573
|
"""
|
|
1626
1574
|
|
|
1627
1575
|
:return: The RNA type or default when not found.
|
|
1628
|
-
:rtype: bpy.types.Struct
|
|
1629
1576
|
"""
|
|
1630
1577
|
|
|
1631
1578
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1632
1579
|
"""
|
|
1633
1580
|
|
|
1634
1581
|
:return: The class or default when not found.
|
|
1635
|
-
:rtype: typing.Any
|
|
1636
1582
|
"""
|
|
1637
1583
|
|
|
1638
1584
|
def draw(self, context) -> None:
|
|
@@ -1641,7 +1587,7 @@ class CLIP_PT_tools_orientation(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1641
1587
|
:param context:
|
|
1642
1588
|
"""
|
|
1643
1589
|
|
|
1644
|
-
class CLIP_PT_tools_plane_tracking(CLIP_PT_tracking_panel,
|
|
1590
|
+
class CLIP_PT_tools_plane_tracking(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1645
1591
|
bl_category: typing.Any
|
|
1646
1592
|
bl_label: typing.Any
|
|
1647
1593
|
bl_options: typing.Any
|
|
@@ -1654,14 +1600,12 @@ class CLIP_PT_tools_plane_tracking(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1654
1600
|
"""
|
|
1655
1601
|
|
|
1656
1602
|
:return: The RNA type or default when not found.
|
|
1657
|
-
:rtype: bpy.types.Struct
|
|
1658
1603
|
"""
|
|
1659
1604
|
|
|
1660
1605
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1661
1606
|
"""
|
|
1662
1607
|
|
|
1663
1608
|
:return: The class or default when not found.
|
|
1664
|
-
:rtype: typing.Any
|
|
1665
1609
|
"""
|
|
1666
1610
|
|
|
1667
1611
|
def draw(self, _context) -> None:
|
|
@@ -1670,7 +1614,7 @@ class CLIP_PT_tools_plane_tracking(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1670
1614
|
:param _context:
|
|
1671
1615
|
"""
|
|
1672
1616
|
|
|
1673
|
-
class CLIP_PT_tools_scenesetup(
|
|
1617
|
+
class CLIP_PT_tools_scenesetup(_bpy_types.Panel):
|
|
1674
1618
|
bl_category: typing.Any
|
|
1675
1619
|
bl_label: typing.Any
|
|
1676
1620
|
bl_region_type: typing.Any
|
|
@@ -1682,14 +1626,12 @@ class CLIP_PT_tools_scenesetup(bpy.types.Panel):
|
|
|
1682
1626
|
"""
|
|
1683
1627
|
|
|
1684
1628
|
:return: The RNA type or default when not found.
|
|
1685
|
-
:rtype: bpy.types.Struct
|
|
1686
1629
|
"""
|
|
1687
1630
|
|
|
1688
1631
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1689
1632
|
"""
|
|
1690
1633
|
|
|
1691
1634
|
:return: The class or default when not found.
|
|
1692
|
-
:rtype: typing.Any
|
|
1693
1635
|
"""
|
|
1694
1636
|
|
|
1695
1637
|
def draw(self, _context) -> None:
|
|
@@ -1705,7 +1647,7 @@ class CLIP_PT_tools_scenesetup(bpy.types.Panel):
|
|
|
1705
1647
|
:param context:
|
|
1706
1648
|
"""
|
|
1707
1649
|
|
|
1708
|
-
class CLIP_PT_tools_solve(CLIP_PT_tracking_panel,
|
|
1650
|
+
class CLIP_PT_tools_solve(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1709
1651
|
bl_category: typing.Any
|
|
1710
1652
|
bl_label: typing.Any
|
|
1711
1653
|
bl_region_type: typing.Any
|
|
@@ -1717,14 +1659,12 @@ class CLIP_PT_tools_solve(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1717
1659
|
"""
|
|
1718
1660
|
|
|
1719
1661
|
:return: The RNA type or default when not found.
|
|
1720
|
-
:rtype: bpy.types.Struct
|
|
1721
1662
|
"""
|
|
1722
1663
|
|
|
1723
1664
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1724
1665
|
"""
|
|
1725
1666
|
|
|
1726
1667
|
:return: The class or default when not found.
|
|
1727
|
-
:rtype: typing.Any
|
|
1728
1668
|
"""
|
|
1729
1669
|
|
|
1730
1670
|
def draw(self, context) -> None:
|
|
@@ -1733,7 +1673,7 @@ class CLIP_PT_tools_solve(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1733
1673
|
:param context:
|
|
1734
1674
|
"""
|
|
1735
1675
|
|
|
1736
|
-
class CLIP_PT_tools_tracking(CLIP_PT_tracking_panel,
|
|
1676
|
+
class CLIP_PT_tools_tracking(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1737
1677
|
bl_category: typing.Any
|
|
1738
1678
|
bl_label: typing.Any
|
|
1739
1679
|
bl_options: typing.Any
|
|
@@ -1747,14 +1687,12 @@ class CLIP_PT_tools_tracking(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1747
1687
|
"""
|
|
1748
1688
|
|
|
1749
1689
|
:return: The RNA type or default when not found.
|
|
1750
|
-
:rtype: bpy.types.Struct
|
|
1751
1690
|
"""
|
|
1752
1691
|
|
|
1753
1692
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1754
1693
|
"""
|
|
1755
1694
|
|
|
1756
1695
|
:return: The class or default when not found.
|
|
1757
|
-
:rtype: typing.Any
|
|
1758
1696
|
"""
|
|
1759
1697
|
|
|
1760
1698
|
def draw(self, _context) -> None:
|
|
@@ -1763,7 +1701,7 @@ class CLIP_PT_tools_tracking(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1763
1701
|
:param _context:
|
|
1764
1702
|
"""
|
|
1765
1703
|
|
|
1766
|
-
class CLIP_PT_track(CLIP_PT_tracking_panel,
|
|
1704
|
+
class CLIP_PT_track(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1767
1705
|
bl_category: typing.Any
|
|
1768
1706
|
bl_label: typing.Any
|
|
1769
1707
|
bl_region_type: typing.Any
|
|
@@ -1776,14 +1714,12 @@ class CLIP_PT_track(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1776
1714
|
"""
|
|
1777
1715
|
|
|
1778
1716
|
:return: The RNA type or default when not found.
|
|
1779
|
-
:rtype: bpy.types.Struct
|
|
1780
1717
|
"""
|
|
1781
1718
|
|
|
1782
1719
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1783
1720
|
"""
|
|
1784
1721
|
|
|
1785
1722
|
:return: The class or default when not found.
|
|
1786
|
-
:rtype: typing.Any
|
|
1787
1723
|
"""
|
|
1788
1724
|
|
|
1789
1725
|
def draw(self, context) -> None:
|
|
@@ -1792,7 +1728,7 @@ class CLIP_PT_track(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1792
1728
|
:param context:
|
|
1793
1729
|
"""
|
|
1794
1730
|
|
|
1795
|
-
class CLIP_PT_track_color_presets(bl_ui.utils.PresetPanel,
|
|
1731
|
+
class CLIP_PT_track_color_presets(bl_ui.utils.PresetPanel, _bpy_types.Panel):
|
|
1796
1732
|
"""Predefined track color"""
|
|
1797
1733
|
|
|
1798
1734
|
bl_label: typing.Any
|
|
@@ -1808,17 +1744,15 @@ class CLIP_PT_track_color_presets(bl_ui.utils.PresetPanel, bpy.types.Panel):
|
|
|
1808
1744
|
"""
|
|
1809
1745
|
|
|
1810
1746
|
:return: The RNA type or default when not found.
|
|
1811
|
-
:rtype: bpy.types.Struct
|
|
1812
1747
|
"""
|
|
1813
1748
|
|
|
1814
1749
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1815
1750
|
"""
|
|
1816
1751
|
|
|
1817
1752
|
:return: The class or default when not found.
|
|
1818
|
-
:rtype: typing.Any
|
|
1819
1753
|
"""
|
|
1820
1754
|
|
|
1821
|
-
class CLIP_PT_track_settings(CLIP_PT_tracking_panel,
|
|
1755
|
+
class CLIP_PT_track_settings(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1822
1756
|
bl_category: typing.Any
|
|
1823
1757
|
bl_label: typing.Any
|
|
1824
1758
|
bl_options: typing.Any
|
|
@@ -1831,14 +1765,12 @@ class CLIP_PT_track_settings(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1831
1765
|
"""
|
|
1832
1766
|
|
|
1833
1767
|
:return: The RNA type or default when not found.
|
|
1834
|
-
:rtype: bpy.types.Struct
|
|
1835
1768
|
"""
|
|
1836
1769
|
|
|
1837
1770
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1838
1771
|
"""
|
|
1839
1772
|
|
|
1840
1773
|
:return: The class or default when not found.
|
|
1841
|
-
:rtype: typing.Any
|
|
1842
1774
|
"""
|
|
1843
1775
|
|
|
1844
1776
|
def draw(self, context) -> None:
|
|
@@ -1847,7 +1779,7 @@ class CLIP_PT_track_settings(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1847
1779
|
:param context:
|
|
1848
1780
|
"""
|
|
1849
1781
|
|
|
1850
|
-
class CLIP_PT_track_settings_extras(CLIP_PT_tracking_panel,
|
|
1782
|
+
class CLIP_PT_track_settings_extras(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1851
1783
|
bl_category: typing.Any
|
|
1852
1784
|
bl_label: typing.Any
|
|
1853
1785
|
bl_options: typing.Any
|
|
@@ -1861,14 +1793,12 @@ class CLIP_PT_track_settings_extras(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1861
1793
|
"""
|
|
1862
1794
|
|
|
1863
1795
|
:return: The RNA type or default when not found.
|
|
1864
|
-
:rtype: bpy.types.Struct
|
|
1865
1796
|
"""
|
|
1866
1797
|
|
|
1867
1798
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1868
1799
|
"""
|
|
1869
1800
|
|
|
1870
1801
|
:return: The class or default when not found.
|
|
1871
|
-
:rtype: typing.Any
|
|
1872
1802
|
"""
|
|
1873
1803
|
|
|
1874
1804
|
def draw(self, context) -> None:
|
|
@@ -1884,7 +1814,7 @@ class CLIP_PT_track_settings_extras(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1884
1814
|
:param context:
|
|
1885
1815
|
"""
|
|
1886
1816
|
|
|
1887
|
-
class CLIP_PT_tracking_camera(
|
|
1817
|
+
class CLIP_PT_tracking_camera(_bpy_types.Panel):
|
|
1888
1818
|
bl_category: typing.Any
|
|
1889
1819
|
bl_label: typing.Any
|
|
1890
1820
|
bl_options: typing.Any
|
|
@@ -1897,14 +1827,12 @@ class CLIP_PT_tracking_camera(bpy.types.Panel):
|
|
|
1897
1827
|
"""
|
|
1898
1828
|
|
|
1899
1829
|
:return: The RNA type or default when not found.
|
|
1900
|
-
:rtype: bpy.types.Struct
|
|
1901
1830
|
"""
|
|
1902
1831
|
|
|
1903
1832
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1904
1833
|
"""
|
|
1905
1834
|
|
|
1906
1835
|
:return: The class or default when not found.
|
|
1907
|
-
:rtype: typing.Any
|
|
1908
1836
|
"""
|
|
1909
1837
|
|
|
1910
1838
|
def draw(self, context) -> None:
|
|
@@ -1926,7 +1854,7 @@ class CLIP_PT_tracking_camera(bpy.types.Panel):
|
|
|
1926
1854
|
:param context:
|
|
1927
1855
|
"""
|
|
1928
1856
|
|
|
1929
|
-
class CLIP_PT_tracking_lens(
|
|
1857
|
+
class CLIP_PT_tracking_lens(_bpy_types.Panel):
|
|
1930
1858
|
bl_category: typing.Any
|
|
1931
1859
|
bl_label: typing.Any
|
|
1932
1860
|
bl_options: typing.Any
|
|
@@ -1941,14 +1869,12 @@ class CLIP_PT_tracking_lens(bpy.types.Panel):
|
|
|
1941
1869
|
"""
|
|
1942
1870
|
|
|
1943
1871
|
:return: The RNA type or default when not found.
|
|
1944
|
-
:rtype: bpy.types.Struct
|
|
1945
1872
|
"""
|
|
1946
1873
|
|
|
1947
1874
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1948
1875
|
"""
|
|
1949
1876
|
|
|
1950
1877
|
:return: The class or default when not found.
|
|
1951
|
-
:rtype: typing.Any
|
|
1952
1878
|
"""
|
|
1953
1879
|
|
|
1954
1880
|
def draw(self, context) -> None:
|
|
@@ -1972,7 +1898,7 @@ class CLIP_PT_tracking_panel:
|
|
|
1972
1898
|
:param context:
|
|
1973
1899
|
"""
|
|
1974
1900
|
|
|
1975
|
-
class CLIP_PT_tracking_settings(CLIP_PT_tracking_panel,
|
|
1901
|
+
class CLIP_PT_tracking_settings(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1976
1902
|
bl_category: typing.Any
|
|
1977
1903
|
bl_label: typing.Any
|
|
1978
1904
|
bl_region_type: typing.Any
|
|
@@ -1984,14 +1910,12 @@ class CLIP_PT_tracking_settings(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
1984
1910
|
"""
|
|
1985
1911
|
|
|
1986
1912
|
:return: The RNA type or default when not found.
|
|
1987
|
-
:rtype: bpy.types.Struct
|
|
1988
1913
|
"""
|
|
1989
1914
|
|
|
1990
1915
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1991
1916
|
"""
|
|
1992
1917
|
|
|
1993
1918
|
:return: The class or default when not found.
|
|
1994
|
-
:rtype: typing.Any
|
|
1995
1919
|
"""
|
|
1996
1920
|
|
|
1997
1921
|
def draw(self, context) -> None:
|
|
@@ -2006,7 +1930,8 @@ class CLIP_PT_tracking_settings(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
2006
1930
|
:param _context:
|
|
2007
1931
|
"""
|
|
2008
1932
|
|
|
2009
|
-
class CLIP_PT_tracking_settings_extras(CLIP_PT_tracking_panel,
|
|
1933
|
+
class CLIP_PT_tracking_settings_extras(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1934
|
+
bl_category: typing.Any
|
|
2010
1935
|
bl_label: typing.Any
|
|
2011
1936
|
bl_options: typing.Any
|
|
2012
1937
|
bl_parent_id: typing.Any
|
|
@@ -2019,14 +1944,12 @@ class CLIP_PT_tracking_settings_extras(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
2019
1944
|
"""
|
|
2020
1945
|
|
|
2021
1946
|
:return: The RNA type or default when not found.
|
|
2022
|
-
:rtype: bpy.types.Struct
|
|
2023
1947
|
"""
|
|
2024
1948
|
|
|
2025
1949
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2026
1950
|
"""
|
|
2027
1951
|
|
|
2028
1952
|
:return: The class or default when not found.
|
|
2029
|
-
:rtype: typing.Any
|
|
2030
1953
|
"""
|
|
2031
1954
|
|
|
2032
1955
|
def draw(self, context) -> None:
|
|
@@ -2035,7 +1958,7 @@ class CLIP_PT_tracking_settings_extras(CLIP_PT_tracking_panel, bpy.types.Panel):
|
|
|
2035
1958
|
:param context:
|
|
2036
1959
|
"""
|
|
2037
1960
|
|
|
2038
|
-
class CLIP_PT_tracking_settings_presets(bl_ui.utils.PresetPanel,
|
|
1961
|
+
class CLIP_PT_tracking_settings_presets(bl_ui.utils.PresetPanel, _bpy_types.Panel):
|
|
2039
1962
|
"""Predefined tracking settings"""
|
|
2040
1963
|
|
|
2041
1964
|
bl_label: typing.Any
|
|
@@ -2051,17 +1974,15 @@ class CLIP_PT_tracking_settings_presets(bl_ui.utils.PresetPanel, bpy.types.Panel
|
|
|
2051
1974
|
"""
|
|
2052
1975
|
|
|
2053
1976
|
:return: The RNA type or default when not found.
|
|
2054
|
-
:rtype: bpy.types.Struct
|
|
2055
1977
|
"""
|
|
2056
1978
|
|
|
2057
1979
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2058
1980
|
"""
|
|
2059
1981
|
|
|
2060
1982
|
:return: The class or default when not found.
|
|
2061
|
-
:rtype: typing.Any
|
|
2062
1983
|
"""
|
|
2063
1984
|
|
|
2064
|
-
class CLIP_UL_tracking_objects(
|
|
1985
|
+
class CLIP_UL_tracking_objects(_bpy_types.UIList):
|
|
2065
1986
|
bl_rna: typing.Any
|
|
2066
1987
|
id_data: typing.Any
|
|
2067
1988
|
|
|
@@ -2069,14 +1990,12 @@ class CLIP_UL_tracking_objects(bpy.types.UIList):
|
|
|
2069
1990
|
"""
|
|
2070
1991
|
|
|
2071
1992
|
:return: The RNA type or default when not found.
|
|
2072
|
-
:rtype: bpy.types.Struct
|
|
2073
1993
|
"""
|
|
2074
1994
|
|
|
2075
1995
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2076
1996
|
"""
|
|
2077
1997
|
|
|
2078
1998
|
:return: The class or default when not found.
|
|
2079
|
-
:rtype: typing.Any
|
|
2080
1999
|
"""
|
|
2081
2000
|
|
|
2082
2001
|
def draw_item(
|