fake-bpy-module 20240321__py3-none-any.whl → 20240322__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +330 -428
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86353 -87337
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -4,630 +4,1422 @@ import bpy_types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  class CLIP_OT_bundles_to_mesh(bpy_types.Operator):
7
+ """ """
8
+
7
9
  bl_idname: typing.Any
10
+ """ """
11
+
8
12
  bl_label: typing.Any
13
+ """ """
14
+
9
15
  bl_options: typing.Any
16
+ """ """
17
+
10
18
  bl_rna: typing.Any
19
+ """ """
20
+
11
21
  id_data: typing.Any
22
+ """ """
12
23
 
13
24
  def as_keywords(self, ignore):
14
25
  """
15
26
 
16
- :param self:
17
- :type self:
18
27
  :param ignore:
19
- :type ignore:
20
28
  """
21
29
  ...
22
30
 
23
- def as_pointer(self): ...
24
- def bl_rna_get_subclass(self): ...
25
- def bl_rna_get_subclass_py(self): ...
26
- def driver_add(self): ...
27
- def driver_remove(self): ...
31
+ def as_pointer(self):
32
+ """ """
33
+ ...
34
+
35
+ def bl_rna_get_subclass(self):
36
+ """ """
37
+ ...
38
+
39
+ def bl_rna_get_subclass_py(self):
40
+ """ """
41
+ ...
42
+
43
+ def driver_add(self):
44
+ """ """
45
+ ...
46
+
47
+ def driver_remove(self):
48
+ """ """
49
+ ...
50
+
28
51
  def execute(self, context):
29
52
  """
30
53
 
31
- :param self:
32
- :type self:
33
54
  :param context:
34
- :type context:
35
- """
36
- ...
37
-
38
- def get(self): ...
39
- def id_properties_clear(self): ...
40
- def id_properties_ensure(self): ...
41
- def id_properties_ui(self): ...
42
- def is_property_hidden(self): ...
43
- def is_property_overridable_library(self): ...
44
- def is_property_readonly(self): ...
45
- def is_property_set(self): ...
46
- def items(self): ...
47
- def keyframe_delete(self): ...
48
- def keyframe_insert(self): ...
49
- def keys(self): ...
50
- def path_from_id(self): ...
51
- def path_resolve(self): ...
52
- def poll(self, context):
53
55
  """
56
+ ...
54
57
 
55
- :param context:
56
- :type context:
57
- """
58
+ def get(self):
59
+ """ """
58
60
  ...
59
61
 
60
- def poll_message_set(self): ...
61
- def pop(self): ...
62
- def property_overridable_library_set(self): ...
63
- def property_unset(self): ...
64
- def type_recast(self): ...
65
- def values(self): ...
62
+ def id_properties_clear(self):
63
+ """ """
64
+ ...
66
65
 
67
- class CLIP_OT_constraint_to_fcurve(bpy_types.Operator):
68
- bl_idname: typing.Any
69
- bl_label: typing.Any
70
- bl_options: typing.Any
71
- bl_rna: typing.Any
72
- id_data: typing.Any
66
+ def id_properties_ensure(self):
67
+ """ """
68
+ ...
73
69
 
74
- def as_keywords(self, ignore):
75
- """
70
+ def id_properties_ui(self):
71
+ """ """
72
+ ...
76
73
 
77
- :param self:
78
- :type self:
79
- :param ignore:
80
- :type ignore:
81
- """
74
+ def is_property_hidden(self):
75
+ """ """
82
76
  ...
83
77
 
84
- def as_pointer(self): ...
85
- def bl_rna_get_subclass(self): ...
86
- def bl_rna_get_subclass_py(self): ...
87
- def driver_add(self): ...
88
- def driver_remove(self): ...
89
- def execute(self, context):
90
- """
78
+ def is_property_overridable_library(self):
79
+ """ """
80
+ ...
91
81
 
92
- :param self:
93
- :type self:
94
- :param context:
95
- :type context:
96
- """
97
- ...
98
-
99
- def get(self): ...
100
- def id_properties_clear(self): ...
101
- def id_properties_ensure(self): ...
102
- def id_properties_ui(self): ...
103
- def is_property_hidden(self): ...
104
- def is_property_overridable_library(self): ...
105
- def is_property_readonly(self): ...
106
- def is_property_set(self): ...
107
- def items(self): ...
108
- def keyframe_delete(self): ...
109
- def keyframe_insert(self): ...
110
- def keys(self): ...
111
- def path_from_id(self): ...
112
- def path_resolve(self): ...
113
- def poll_message_set(self): ...
114
- def pop(self): ...
115
- def property_overridable_library_set(self): ...
116
- def property_unset(self): ...
117
- def type_recast(self): ...
118
- def values(self): ...
82
+ def is_property_readonly(self):
83
+ """ """
84
+ ...
119
85
 
120
- class CLIP_OT_delete_proxy(bpy_types.Operator):
121
- bl_idname: typing.Any
122
- bl_label: typing.Any
123
- bl_options: typing.Any
124
- bl_rna: typing.Any
125
- id_data: typing.Any
86
+ def is_property_set(self):
87
+ """ """
88
+ ...
126
89
 
127
- def as_keywords(self, ignore):
128
- """
90
+ def items(self):
91
+ """ """
92
+ ...
129
93
 
130
- :param self:
131
- :type self:
132
- :param ignore:
133
- :type ignore:
134
- """
94
+ def keyframe_delete(self):
95
+ """ """
135
96
  ...
136
97
 
137
- def as_pointer(self): ...
138
- def bl_rna_get_subclass(self): ...
139
- def bl_rna_get_subclass_py(self): ...
140
- def driver_add(self): ...
141
- def driver_remove(self): ...
142
- def execute(self, context):
143
- """
98
+ def keyframe_insert(self):
99
+ """ """
100
+ ...
144
101
 
145
- :param self:
146
- :type self:
147
- :param context:
148
- :type context:
149
- """
102
+ def keys(self):
103
+ """ """
150
104
  ...
151
105
 
152
- def get(self): ...
153
- def id_properties_clear(self): ...
154
- def id_properties_ensure(self): ...
155
- def id_properties_ui(self): ...
156
- def invoke(self, context, event):
157
- """
106
+ def path_from_id(self):
107
+ """ """
108
+ ...
158
109
 
159
- :param self:
160
- :type self:
161
- :param context:
162
- :type context:
163
- :param event:
164
- :type event:
165
- """
110
+ def path_resolve(self):
111
+ """ """
166
112
  ...
167
113
 
168
- def is_property_hidden(self): ...
169
- def is_property_overridable_library(self): ...
170
- def is_property_readonly(self): ...
171
- def is_property_set(self): ...
172
- def items(self): ...
173
- def keyframe_delete(self): ...
174
- def keyframe_insert(self): ...
175
- def keys(self): ...
176
- def path_from_id(self): ...
177
- def path_resolve(self): ...
178
114
  def poll(self, context):
179
115
  """
180
116
 
181
117
  :param context:
182
- :type context:
183
118
  """
184
119
  ...
185
120
 
186
- def poll_message_set(self): ...
187
- def pop(self): ...
188
- def property_overridable_library_set(self): ...
189
- def property_unset(self): ...
190
- def type_recast(self): ...
191
- def values(self): ...
121
+ def poll_message_set(self):
122
+ """ """
123
+ ...
124
+
125
+ def pop(self):
126
+ """ """
127
+ ...
128
+
129
+ def property_overridable_library_set(self):
130
+ """ """
131
+ ...
132
+
133
+ def property_unset(self):
134
+ """ """
135
+ ...
136
+
137
+ def type_recast(self):
138
+ """ """
139
+ ...
140
+
141
+ def values(self):
142
+ """ """
143
+ ...
144
+
145
+ class CLIP_OT_constraint_to_fcurve(bpy_types.Operator):
146
+ """ """
192
147
 
193
- class CLIP_OT_filter_tracks(bpy_types.Operator):
194
148
  bl_idname: typing.Any
149
+ """ """
150
+
195
151
  bl_label: typing.Any
152
+ """ """
153
+
196
154
  bl_options: typing.Any
155
+ """ """
156
+
197
157
  bl_rna: typing.Any
158
+ """ """
159
+
198
160
  id_data: typing.Any
161
+ """ """
199
162
 
200
163
  def as_keywords(self, ignore):
201
164
  """
202
165
 
203
- :param self:
204
- :type self:
205
166
  :param ignore:
206
- :type ignore:
207
167
  """
208
168
  ...
209
169
 
210
- def as_pointer(self): ...
211
- def bl_rna_get_subclass(self): ...
212
- def bl_rna_get_subclass_py(self): ...
213
- def driver_add(self): ...
214
- def driver_remove(self): ...
170
+ def as_pointer(self):
171
+ """ """
172
+ ...
173
+
174
+ def bl_rna_get_subclass(self):
175
+ """ """
176
+ ...
177
+
178
+ def bl_rna_get_subclass_py(self):
179
+ """ """
180
+ ...
181
+
182
+ def driver_add(self):
183
+ """ """
184
+ ...
185
+
186
+ def driver_remove(self):
187
+ """ """
188
+ ...
189
+
215
190
  def execute(self, context):
216
191
  """
217
192
 
218
- :param self:
219
- :type self:
220
193
  :param context:
221
- :type context:
222
- """
223
- ...
224
-
225
- def get(self): ...
226
- def id_properties_clear(self): ...
227
- def id_properties_ensure(self): ...
228
- def id_properties_ui(self): ...
229
- def is_property_hidden(self): ...
230
- def is_property_overridable_library(self): ...
231
- def is_property_readonly(self): ...
232
- def is_property_set(self): ...
233
- def items(self): ...
234
- def keyframe_delete(self): ...
235
- def keyframe_insert(self): ...
236
- def keys(self): ...
237
- def path_from_id(self): ...
238
- def path_resolve(self): ...
239
- def poll(self, context):
240
194
  """
195
+ ...
241
196
 
242
- :param context:
243
- :type context:
244
- """
197
+ def get(self):
198
+ """ """
245
199
  ...
246
200
 
247
- def poll_message_set(self): ...
248
- def pop(self): ...
249
- def property_overridable_library_set(self): ...
250
- def property_unset(self): ...
251
- def type_recast(self): ...
252
- def values(self): ...
201
+ def id_properties_clear(self):
202
+ """ """
203
+ ...
253
204
 
254
- class CLIP_OT_set_active_clip(bpy_types.Operator):
255
- bl_idname: typing.Any
256
- bl_label: typing.Any
257
- bl_rna: typing.Any
258
- id_data: typing.Any
205
+ def id_properties_ensure(self):
206
+ """ """
207
+ ...
259
208
 
260
- def as_keywords(self, ignore):
261
- """
209
+ def id_properties_ui(self):
210
+ """ """
211
+ ...
262
212
 
263
- :param self:
264
- :type self:
265
- :param ignore:
266
- :type ignore:
267
- """
213
+ def is_property_hidden(self):
214
+ """ """
268
215
  ...
269
216
 
270
- def as_pointer(self): ...
271
- def bl_rna_get_subclass(self): ...
272
- def bl_rna_get_subclass_py(self): ...
273
- def driver_add(self): ...
274
- def driver_remove(self): ...
275
- def execute(self, context):
276
- """
217
+ def is_property_overridable_library(self):
218
+ """ """
219
+ ...
277
220
 
278
- :param self:
279
- :type self:
280
- :param context:
281
- :type context:
282
- """
283
- ...
284
-
285
- def get(self): ...
286
- def id_properties_clear(self): ...
287
- def id_properties_ensure(self): ...
288
- def id_properties_ui(self): ...
289
- def is_property_hidden(self): ...
290
- def is_property_overridable_library(self): ...
291
- def is_property_readonly(self): ...
292
- def is_property_set(self): ...
293
- def items(self): ...
294
- def keyframe_delete(self): ...
295
- def keyframe_insert(self): ...
296
- def keys(self): ...
297
- def path_from_id(self): ...
298
- def path_resolve(self): ...
299
- def poll(self, context):
300
- """
221
+ def is_property_readonly(self):
222
+ """ """
223
+ ...
301
224
 
302
- :param context:
303
- :type context:
304
- """
225
+ def is_property_set(self):
226
+ """ """
305
227
  ...
306
228
 
307
- def poll_message_set(self): ...
308
- def pop(self): ...
309
- def property_overridable_library_set(self): ...
310
- def property_unset(self): ...
311
- def type_recast(self): ...
312
- def values(self): ...
229
+ def items(self):
230
+ """ """
231
+ ...
313
232
 
314
- class CLIP_OT_set_viewport_background(bpy_types.Operator):
315
- bl_idname: typing.Any
316
- bl_label: typing.Any
317
- bl_options: typing.Any
318
- bl_rna: typing.Any
319
- id_data: typing.Any
233
+ def keyframe_delete(self):
234
+ """ """
235
+ ...
320
236
 
321
- def as_keywords(self, ignore):
322
- """
237
+ def keyframe_insert(self):
238
+ """ """
239
+ ...
323
240
 
324
- :param self:
325
- :type self:
326
- :param ignore:
327
- :type ignore:
328
- """
241
+ def keys(self):
242
+ """ """
329
243
  ...
330
244
 
331
- def as_pointer(self): ...
332
- def bl_rna_get_subclass(self): ...
333
- def bl_rna_get_subclass_py(self): ...
334
- def driver_add(self): ...
335
- def driver_remove(self): ...
336
- def execute(self, context):
337
- """
245
+ def path_from_id(self):
246
+ """ """
247
+ ...
338
248
 
339
- :param self:
340
- :type self:
341
- :param context:
342
- :type context:
343
- """
344
- ...
345
-
346
- def get(self): ...
347
- def id_properties_clear(self): ...
348
- def id_properties_ensure(self): ...
349
- def id_properties_ui(self): ...
350
- def is_property_hidden(self): ...
351
- def is_property_overridable_library(self): ...
352
- def is_property_readonly(self): ...
353
- def is_property_set(self): ...
354
- def items(self): ...
355
- def keyframe_delete(self): ...
356
- def keyframe_insert(self): ...
357
- def keys(self): ...
358
- def path_from_id(self): ...
359
- def path_resolve(self): ...
360
- def poll(self, context):
361
- """
249
+ def path_resolve(self):
250
+ """ """
251
+ ...
362
252
 
363
- :param context:
364
- :type context:
365
- """
253
+ def poll_message_set(self):
254
+ """ """
255
+ ...
256
+
257
+ def pop(self):
258
+ """ """
366
259
  ...
367
260
 
368
- def poll_message_set(self): ...
369
- def pop(self): ...
370
- def property_overridable_library_set(self): ...
371
- def property_unset(self): ...
372
- def type_recast(self): ...
373
- def values(self): ...
261
+ def property_overridable_library_set(self):
262
+ """ """
263
+ ...
264
+
265
+ def property_unset(self):
266
+ """ """
267
+ ...
268
+
269
+ def type_recast(self):
270
+ """ """
271
+ ...
272
+
273
+ def values(self):
274
+ """ """
275
+ ...
276
+
277
+ class CLIP_OT_delete_proxy(bpy_types.Operator):
278
+ """ """
374
279
 
375
- class CLIP_OT_setup_tracking_scene(bpy_types.Operator):
376
280
  bl_idname: typing.Any
281
+ """ """
282
+
377
283
  bl_label: typing.Any
284
+ """ """
285
+
378
286
  bl_options: typing.Any
287
+ """ """
288
+
379
289
  bl_rna: typing.Any
290
+ """ """
291
+
380
292
  id_data: typing.Any
293
+ """ """
381
294
 
382
295
  def as_keywords(self, ignore):
383
296
  """
384
297
 
385
- :param self:
386
- :type self:
387
298
  :param ignore:
388
- :type ignore:
389
299
  """
390
300
  ...
391
301
 
392
- def as_pointer(self): ...
393
- def bl_rna_get_subclass(self): ...
394
- def bl_rna_get_subclass_py(self): ...
395
- def createCollection(self, context, collection_name):
396
- """
302
+ def as_pointer(self):
303
+ """ """
304
+ ...
397
305
 
398
- :param context:
399
- :type context:
400
- :param collection_name:
401
- :type collection_name:
402
- """
306
+ def bl_rna_get_subclass(self):
307
+ """ """
403
308
  ...
404
309
 
405
- def driver_add(self): ...
406
- def driver_remove(self): ...
407
- def execute(self, context):
408
- """
310
+ def bl_rna_get_subclass_py(self):
311
+ """ """
312
+ ...
409
313
 
410
- :param self:
411
- :type self:
412
- :param context:
413
- :type context:
414
- """
415
- ...
416
-
417
- def get(self): ...
418
- def id_properties_clear(self): ...
419
- def id_properties_ensure(self): ...
420
- def id_properties_ui(self): ...
421
- def is_property_hidden(self): ...
422
- def is_property_overridable_library(self): ...
423
- def is_property_readonly(self): ...
424
- def is_property_set(self): ...
425
- def items(self): ...
426
- def keyframe_delete(self): ...
427
- def keyframe_insert(self): ...
428
- def keys(self): ...
429
- def path_from_id(self): ...
430
- def path_resolve(self): ...
431
- def poll(self, context):
314
+ def driver_add(self):
315
+ """ """
316
+ ...
317
+
318
+ def driver_remove(self):
319
+ """ """
320
+ ...
321
+
322
+ def execute(self, context):
432
323
  """
433
324
 
434
325
  :param context:
435
- :type context:
436
326
  """
437
327
  ...
438
328
 
439
- def poll_message_set(self): ...
440
- def pop(self): ...
441
- def property_overridable_library_set(self): ...
442
- def property_unset(self): ...
443
- def type_recast(self): ...
444
- def values(self): ...
329
+ def get(self):
330
+ """ """
331
+ ...
445
332
 
446
- class CLIP_OT_track_settings_as_default(bpy_types.Operator):
447
- bl_idname: typing.Any
448
- bl_label: typing.Any
449
- bl_options: typing.Any
450
- bl_rna: typing.Any
451
- id_data: typing.Any
333
+ def id_properties_clear(self):
334
+ """ """
335
+ ...
452
336
 
453
- def as_keywords(self, ignore):
454
- """
337
+ def id_properties_ensure(self):
338
+ """ """
339
+ ...
455
340
 
456
- :param self:
457
- :type self:
458
- :param ignore:
459
- :type ignore:
460
- """
341
+ def id_properties_ui(self):
342
+ """ """
461
343
  ...
462
344
 
463
- def as_pointer(self): ...
464
- def bl_rna_get_subclass(self): ...
465
- def bl_rna_get_subclass_py(self): ...
466
- def driver_add(self): ...
467
- def driver_remove(self): ...
468
- def execute(self, context):
345
+ def invoke(self, context, event):
469
346
  """
470
347
 
471
- :param self:
472
- :type self:
473
348
  :param context:
474
- :type context:
475
- """
476
- ...
477
-
478
- def get(self): ...
479
- def id_properties_clear(self): ...
480
- def id_properties_ensure(self): ...
481
- def id_properties_ui(self): ...
482
- def is_property_hidden(self): ...
483
- def is_property_overridable_library(self): ...
484
- def is_property_readonly(self): ...
485
- def is_property_set(self): ...
486
- def items(self): ...
487
- def keyframe_delete(self): ...
488
- def keyframe_insert(self): ...
489
- def keys(self): ...
490
- def path_from_id(self): ...
491
- def path_resolve(self): ...
492
- def poll(self, context):
349
+ :param event:
493
350
  """
351
+ ...
494
352
 
495
- :param context:
496
- :type context:
497
- """
353
+ def is_property_hidden(self):
354
+ """ """
498
355
  ...
499
356
 
500
- def poll_message_set(self): ...
501
- def pop(self): ...
502
- def property_overridable_library_set(self): ...
503
- def property_unset(self): ...
504
- def type_recast(self): ...
505
- def values(self): ...
357
+ def is_property_overridable_library(self):
358
+ """ """
359
+ ...
506
360
 
507
- class CLIP_OT_track_settings_to_track(bpy_types.Operator):
508
- bl_idname: typing.Any
509
- bl_label: typing.Any
510
- bl_options: typing.Any
511
- bl_rna: typing.Any
512
- id_data: typing.Any
361
+ def is_property_readonly(self):
362
+ """ """
363
+ ...
513
364
 
514
- def as_keywords(self, ignore):
515
- """
365
+ def is_property_set(self):
366
+ """ """
367
+ ...
516
368
 
517
- :param self:
518
- :type self:
519
- :param ignore:
520
- :type ignore:
521
- """
369
+ def items(self):
370
+ """ """
522
371
  ...
523
372
 
524
- def as_pointer(self): ...
525
- def bl_rna_get_subclass(self): ...
526
- def bl_rna_get_subclass_py(self): ...
527
- def driver_add(self): ...
528
- def driver_remove(self): ...
529
- def execute(self, context):
530
- """
373
+ def keyframe_delete(self):
374
+ """ """
375
+ ...
376
+
377
+ def keyframe_insert(self):
378
+ """ """
379
+ ...
380
+
381
+ def keys(self):
382
+ """ """
383
+ ...
384
+
385
+ def path_from_id(self):
386
+ """ """
387
+ ...
388
+
389
+ def path_resolve(self):
390
+ """ """
391
+ ...
531
392
 
532
- :param self:
533
- :type self:
534
- :param context:
535
- :type context:
536
- """
537
- ...
538
-
539
- def get(self): ...
540
- def id_properties_clear(self): ...
541
- def id_properties_ensure(self): ...
542
- def id_properties_ui(self): ...
543
- def is_property_hidden(self): ...
544
- def is_property_overridable_library(self): ...
545
- def is_property_readonly(self): ...
546
- def is_property_set(self): ...
547
- def items(self): ...
548
- def keyframe_delete(self): ...
549
- def keyframe_insert(self): ...
550
- def keys(self): ...
551
- def path_from_id(self): ...
552
- def path_resolve(self): ...
553
393
  def poll(self, context):
554
394
  """
555
395
 
556
396
  :param context:
557
- :type context:
558
397
  """
559
398
  ...
560
399
 
561
- def poll_message_set(self): ...
562
- def pop(self): ...
563
- def property_overridable_library_set(self): ...
564
- def property_unset(self): ...
565
- def type_recast(self): ...
566
- def values(self): ...
400
+ def poll_message_set(self):
401
+ """ """
402
+ ...
403
+
404
+ def pop(self):
405
+ """ """
406
+ ...
407
+
408
+ def property_overridable_library_set(self):
409
+ """ """
410
+ ...
411
+
412
+ def property_unset(self):
413
+ """ """
414
+ ...
415
+
416
+ def type_recast(self):
417
+ """ """
418
+ ...
419
+
420
+ def values(self):
421
+ """ """
422
+ ...
423
+
424
+ class CLIP_OT_filter_tracks(bpy_types.Operator):
425
+ """ """
567
426
 
568
- class CLIP_OT_track_to_empty(bpy_types.Operator):
569
427
  bl_idname: typing.Any
428
+ """ """
429
+
570
430
  bl_label: typing.Any
431
+ """ """
432
+
571
433
  bl_options: typing.Any
434
+ """ """
435
+
572
436
  bl_rna: typing.Any
437
+ """ """
438
+
573
439
  id_data: typing.Any
440
+ """ """
574
441
 
575
442
  def as_keywords(self, ignore):
576
443
  """
577
444
 
578
- :param self:
579
- :type self:
580
445
  :param ignore:
581
- :type ignore:
582
446
  """
583
447
  ...
584
448
 
585
- def as_pointer(self): ...
586
- def bl_rna_get_subclass(self): ...
587
- def bl_rna_get_subclass_py(self): ...
588
- def driver_add(self): ...
589
- def driver_remove(self): ...
449
+ def as_pointer(self):
450
+ """ """
451
+ ...
452
+
453
+ def bl_rna_get_subclass(self):
454
+ """ """
455
+ ...
456
+
457
+ def bl_rna_get_subclass_py(self):
458
+ """ """
459
+ ...
460
+
461
+ def driver_add(self):
462
+ """ """
463
+ ...
464
+
465
+ def driver_remove(self):
466
+ """ """
467
+ ...
468
+
590
469
  def execute(self, context):
591
470
  """
592
471
 
593
- :param self:
594
- :type self:
595
472
  :param context:
596
- :type context:
597
- """
598
- ...
599
-
600
- def get(self): ...
601
- def id_properties_clear(self): ...
602
- def id_properties_ensure(self): ...
603
- def id_properties_ui(self): ...
604
- def is_property_hidden(self): ...
605
- def is_property_overridable_library(self): ...
606
- def is_property_readonly(self): ...
607
- def is_property_set(self): ...
608
- def items(self): ...
609
- def keyframe_delete(self): ...
610
- def keyframe_insert(self): ...
611
- def keys(self): ...
612
- def path_from_id(self): ...
613
- def path_resolve(self): ...
614
- def poll(self, context):
615
473
  """
474
+ ...
616
475
 
617
- :param context:
618
- :type context:
619
- """
476
+ def get(self):
477
+ """ """
478
+ ...
479
+
480
+ def id_properties_clear(self):
481
+ """ """
482
+ ...
483
+
484
+ def id_properties_ensure(self):
485
+ """ """
486
+ ...
487
+
488
+ def id_properties_ui(self):
489
+ """ """
490
+ ...
491
+
492
+ def is_property_hidden(self):
493
+ """ """
494
+ ...
495
+
496
+ def is_property_overridable_library(self):
497
+ """ """
498
+ ...
499
+
500
+ def is_property_readonly(self):
501
+ """ """
620
502
  ...
621
503
 
622
- def poll_message_set(self): ...
623
- def pop(self): ...
624
- def property_overridable_library_set(self): ...
625
- def property_unset(self): ...
626
- def type_recast(self): ...
627
- def values(self): ...
504
+ def is_property_set(self):
505
+ """ """
506
+ ...
507
+
508
+ def items(self):
509
+ """ """
510
+ ...
511
+
512
+ def keyframe_delete(self):
513
+ """ """
514
+ ...
515
+
516
+ def keyframe_insert(self):
517
+ """ """
518
+ ...
519
+
520
+ def keys(self):
521
+ """ """
522
+ ...
523
+
524
+ def path_from_id(self):
525
+ """ """
526
+ ...
527
+
528
+ def path_resolve(self):
529
+ """ """
530
+ ...
531
+
532
+ def poll(self, context):
533
+ """
534
+
535
+ :param context:
536
+ """
537
+ ...
538
+
539
+ def poll_message_set(self):
540
+ """ """
541
+ ...
542
+
543
+ def pop(self):
544
+ """ """
545
+ ...
546
+
547
+ def property_overridable_library_set(self):
548
+ """ """
549
+ ...
550
+
551
+ def property_unset(self):
552
+ """ """
553
+ ...
554
+
555
+ def type_recast(self):
556
+ """ """
557
+ ...
558
+
559
+ def values(self):
560
+ """ """
561
+ ...
562
+
563
+ class CLIP_OT_set_active_clip(bpy_types.Operator):
564
+ """ """
565
+
566
+ bl_idname: typing.Any
567
+ """ """
568
+
569
+ bl_label: typing.Any
570
+ """ """
571
+
572
+ bl_rna: typing.Any
573
+ """ """
574
+
575
+ id_data: typing.Any
576
+ """ """
577
+
578
+ def as_keywords(self, ignore):
579
+ """
580
+
581
+ :param ignore:
582
+ """
583
+ ...
584
+
585
+ def as_pointer(self):
586
+ """ """
587
+ ...
588
+
589
+ def bl_rna_get_subclass(self):
590
+ """ """
591
+ ...
592
+
593
+ def bl_rna_get_subclass_py(self):
594
+ """ """
595
+ ...
596
+
597
+ def driver_add(self):
598
+ """ """
599
+ ...
600
+
601
+ def driver_remove(self):
602
+ """ """
603
+ ...
604
+
605
+ def execute(self, context):
606
+ """
607
+
608
+ :param context:
609
+ """
610
+ ...
611
+
612
+ def get(self):
613
+ """ """
614
+ ...
615
+
616
+ def id_properties_clear(self):
617
+ """ """
618
+ ...
619
+
620
+ def id_properties_ensure(self):
621
+ """ """
622
+ ...
623
+
624
+ def id_properties_ui(self):
625
+ """ """
626
+ ...
627
+
628
+ def is_property_hidden(self):
629
+ """ """
630
+ ...
631
+
632
+ def is_property_overridable_library(self):
633
+ """ """
634
+ ...
635
+
636
+ def is_property_readonly(self):
637
+ """ """
638
+ ...
639
+
640
+ def is_property_set(self):
641
+ """ """
642
+ ...
643
+
644
+ def items(self):
645
+ """ """
646
+ ...
647
+
648
+ def keyframe_delete(self):
649
+ """ """
650
+ ...
651
+
652
+ def keyframe_insert(self):
653
+ """ """
654
+ ...
655
+
656
+ def keys(self):
657
+ """ """
658
+ ...
659
+
660
+ def path_from_id(self):
661
+ """ """
662
+ ...
663
+
664
+ def path_resolve(self):
665
+ """ """
666
+ ...
667
+
668
+ def poll(self, context):
669
+ """
670
+
671
+ :param context:
672
+ """
673
+ ...
674
+
675
+ def poll_message_set(self):
676
+ """ """
677
+ ...
678
+
679
+ def pop(self):
680
+ """ """
681
+ ...
682
+
683
+ def property_overridable_library_set(self):
684
+ """ """
685
+ ...
686
+
687
+ def property_unset(self):
688
+ """ """
689
+ ...
690
+
691
+ def type_recast(self):
692
+ """ """
693
+ ...
694
+
695
+ def values(self):
696
+ """ """
697
+ ...
698
+
699
+ class CLIP_OT_set_viewport_background(bpy_types.Operator):
700
+ """ """
701
+
702
+ bl_idname: typing.Any
703
+ """ """
704
+
705
+ bl_label: typing.Any
706
+ """ """
707
+
708
+ bl_options: typing.Any
709
+ """ """
710
+
711
+ bl_rna: typing.Any
712
+ """ """
713
+
714
+ id_data: typing.Any
715
+ """ """
716
+
717
+ def as_keywords(self, ignore):
718
+ """
719
+
720
+ :param ignore:
721
+ """
722
+ ...
723
+
724
+ def as_pointer(self):
725
+ """ """
726
+ ...
727
+
728
+ def bl_rna_get_subclass(self):
729
+ """ """
730
+ ...
731
+
732
+ def bl_rna_get_subclass_py(self):
733
+ """ """
734
+ ...
735
+
736
+ def driver_add(self):
737
+ """ """
738
+ ...
739
+
740
+ def driver_remove(self):
741
+ """ """
742
+ ...
743
+
744
+ def execute(self, context):
745
+ """
746
+
747
+ :param context:
748
+ """
749
+ ...
750
+
751
+ def get(self):
752
+ """ """
753
+ ...
754
+
755
+ def id_properties_clear(self):
756
+ """ """
757
+ ...
758
+
759
+ def id_properties_ensure(self):
760
+ """ """
761
+ ...
762
+
763
+ def id_properties_ui(self):
764
+ """ """
765
+ ...
766
+
767
+ def is_property_hidden(self):
768
+ """ """
769
+ ...
770
+
771
+ def is_property_overridable_library(self):
772
+ """ """
773
+ ...
774
+
775
+ def is_property_readonly(self):
776
+ """ """
777
+ ...
778
+
779
+ def is_property_set(self):
780
+ """ """
781
+ ...
782
+
783
+ def items(self):
784
+ """ """
785
+ ...
786
+
787
+ def keyframe_delete(self):
788
+ """ """
789
+ ...
790
+
791
+ def keyframe_insert(self):
792
+ """ """
793
+ ...
794
+
795
+ def keys(self):
796
+ """ """
797
+ ...
798
+
799
+ def path_from_id(self):
800
+ """ """
801
+ ...
802
+
803
+ def path_resolve(self):
804
+ """ """
805
+ ...
806
+
807
+ def poll(self, context):
808
+ """
809
+
810
+ :param context:
811
+ """
812
+ ...
813
+
814
+ def poll_message_set(self):
815
+ """ """
816
+ ...
817
+
818
+ def pop(self):
819
+ """ """
820
+ ...
821
+
822
+ def property_overridable_library_set(self):
823
+ """ """
824
+ ...
825
+
826
+ def property_unset(self):
827
+ """ """
828
+ ...
829
+
830
+ def type_recast(self):
831
+ """ """
832
+ ...
833
+
834
+ def values(self):
835
+ """ """
836
+ ...
837
+
838
+ class CLIP_OT_setup_tracking_scene(bpy_types.Operator):
839
+ """ """
840
+
841
+ bl_idname: typing.Any
842
+ """ """
843
+
844
+ bl_label: typing.Any
845
+ """ """
846
+
847
+ bl_options: typing.Any
848
+ """ """
849
+
850
+ bl_rna: typing.Any
851
+ """ """
852
+
853
+ id_data: typing.Any
854
+ """ """
855
+
856
+ def as_keywords(self, ignore):
857
+ """
858
+
859
+ :param ignore:
860
+ """
861
+ ...
862
+
863
+ def as_pointer(self):
864
+ """ """
865
+ ...
866
+
867
+ def bl_rna_get_subclass(self):
868
+ """ """
869
+ ...
870
+
871
+ def bl_rna_get_subclass_py(self):
872
+ """ """
873
+ ...
874
+
875
+ def createCollection(self, context, collection_name):
876
+ """
877
+
878
+ :param context:
879
+ :param collection_name:
880
+ """
881
+ ...
882
+
883
+ def driver_add(self):
884
+ """ """
885
+ ...
886
+
887
+ def driver_remove(self):
888
+ """ """
889
+ ...
890
+
891
+ def execute(self, context):
892
+ """
893
+
894
+ :param context:
895
+ """
896
+ ...
897
+
898
+ def get(self):
899
+ """ """
900
+ ...
901
+
902
+ def id_properties_clear(self):
903
+ """ """
904
+ ...
905
+
906
+ def id_properties_ensure(self):
907
+ """ """
908
+ ...
909
+
910
+ def id_properties_ui(self):
911
+ """ """
912
+ ...
913
+
914
+ def is_property_hidden(self):
915
+ """ """
916
+ ...
917
+
918
+ def is_property_overridable_library(self):
919
+ """ """
920
+ ...
921
+
922
+ def is_property_readonly(self):
923
+ """ """
924
+ ...
925
+
926
+ def is_property_set(self):
927
+ """ """
928
+ ...
929
+
930
+ def items(self):
931
+ """ """
932
+ ...
933
+
934
+ def keyframe_delete(self):
935
+ """ """
936
+ ...
937
+
938
+ def keyframe_insert(self):
939
+ """ """
940
+ ...
941
+
942
+ def keys(self):
943
+ """ """
944
+ ...
945
+
946
+ def path_from_id(self):
947
+ """ """
948
+ ...
949
+
950
+ def path_resolve(self):
951
+ """ """
952
+ ...
953
+
954
+ def poll(self, context):
955
+ """
956
+
957
+ :param context:
958
+ """
959
+ ...
960
+
961
+ def poll_message_set(self):
962
+ """ """
963
+ ...
964
+
965
+ def pop(self):
966
+ """ """
967
+ ...
968
+
969
+ def property_overridable_library_set(self):
970
+ """ """
971
+ ...
972
+
973
+ def property_unset(self):
974
+ """ """
975
+ ...
976
+
977
+ def type_recast(self):
978
+ """ """
979
+ ...
980
+
981
+ def values(self):
982
+ """ """
983
+ ...
984
+
985
+ class CLIP_OT_track_settings_as_default(bpy_types.Operator):
986
+ """ """
987
+
988
+ bl_idname: typing.Any
989
+ """ """
990
+
991
+ bl_label: typing.Any
992
+ """ """
993
+
994
+ bl_options: typing.Any
995
+ """ """
996
+
997
+ bl_rna: typing.Any
998
+ """ """
999
+
1000
+ id_data: typing.Any
1001
+ """ """
1002
+
1003
+ def as_keywords(self, ignore):
1004
+ """
1005
+
1006
+ :param ignore:
1007
+ """
1008
+ ...
1009
+
1010
+ def as_pointer(self):
1011
+ """ """
1012
+ ...
1013
+
1014
+ def bl_rna_get_subclass(self):
1015
+ """ """
1016
+ ...
1017
+
1018
+ def bl_rna_get_subclass_py(self):
1019
+ """ """
1020
+ ...
1021
+
1022
+ def driver_add(self):
1023
+ """ """
1024
+ ...
1025
+
1026
+ def driver_remove(self):
1027
+ """ """
1028
+ ...
1029
+
1030
+ def execute(self, context):
1031
+ """
1032
+
1033
+ :param context:
1034
+ """
1035
+ ...
1036
+
1037
+ def get(self):
1038
+ """ """
1039
+ ...
1040
+
1041
+ def id_properties_clear(self):
1042
+ """ """
1043
+ ...
1044
+
1045
+ def id_properties_ensure(self):
1046
+ """ """
1047
+ ...
1048
+
1049
+ def id_properties_ui(self):
1050
+ """ """
1051
+ ...
1052
+
1053
+ def is_property_hidden(self):
1054
+ """ """
1055
+ ...
1056
+
1057
+ def is_property_overridable_library(self):
1058
+ """ """
1059
+ ...
1060
+
1061
+ def is_property_readonly(self):
1062
+ """ """
1063
+ ...
1064
+
1065
+ def is_property_set(self):
1066
+ """ """
1067
+ ...
1068
+
1069
+ def items(self):
1070
+ """ """
1071
+ ...
1072
+
1073
+ def keyframe_delete(self):
1074
+ """ """
1075
+ ...
1076
+
1077
+ def keyframe_insert(self):
1078
+ """ """
1079
+ ...
1080
+
1081
+ def keys(self):
1082
+ """ """
1083
+ ...
1084
+
1085
+ def path_from_id(self):
1086
+ """ """
1087
+ ...
1088
+
1089
+ def path_resolve(self):
1090
+ """ """
1091
+ ...
1092
+
1093
+ def poll(self, context):
1094
+ """
1095
+
1096
+ :param context:
1097
+ """
1098
+ ...
1099
+
1100
+ def poll_message_set(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def pop(self):
1105
+ """ """
1106
+ ...
1107
+
1108
+ def property_overridable_library_set(self):
1109
+ """ """
1110
+ ...
1111
+
1112
+ def property_unset(self):
1113
+ """ """
1114
+ ...
1115
+
1116
+ def type_recast(self):
1117
+ """ """
1118
+ ...
1119
+
1120
+ def values(self):
1121
+ """ """
1122
+ ...
1123
+
1124
+ class CLIP_OT_track_settings_to_track(bpy_types.Operator):
1125
+ """ """
1126
+
1127
+ bl_idname: typing.Any
1128
+ """ """
1129
+
1130
+ bl_label: typing.Any
1131
+ """ """
1132
+
1133
+ bl_options: typing.Any
1134
+ """ """
1135
+
1136
+ bl_rna: typing.Any
1137
+ """ """
1138
+
1139
+ id_data: typing.Any
1140
+ """ """
1141
+
1142
+ def as_keywords(self, ignore):
1143
+ """
1144
+
1145
+ :param ignore:
1146
+ """
1147
+ ...
1148
+
1149
+ def as_pointer(self):
1150
+ """ """
1151
+ ...
1152
+
1153
+ def bl_rna_get_subclass(self):
1154
+ """ """
1155
+ ...
1156
+
1157
+ def bl_rna_get_subclass_py(self):
1158
+ """ """
1159
+ ...
1160
+
1161
+ def driver_add(self):
1162
+ """ """
1163
+ ...
1164
+
1165
+ def driver_remove(self):
1166
+ """ """
1167
+ ...
1168
+
1169
+ def execute(self, context):
1170
+ """
1171
+
1172
+ :param context:
1173
+ """
1174
+ ...
1175
+
1176
+ def get(self):
1177
+ """ """
1178
+ ...
1179
+
1180
+ def id_properties_clear(self):
1181
+ """ """
1182
+ ...
1183
+
1184
+ def id_properties_ensure(self):
1185
+ """ """
1186
+ ...
1187
+
1188
+ def id_properties_ui(self):
1189
+ """ """
1190
+ ...
1191
+
1192
+ def is_property_hidden(self):
1193
+ """ """
1194
+ ...
1195
+
1196
+ def is_property_overridable_library(self):
1197
+ """ """
1198
+ ...
1199
+
1200
+ def is_property_readonly(self):
1201
+ """ """
1202
+ ...
1203
+
1204
+ def is_property_set(self):
1205
+ """ """
1206
+ ...
1207
+
1208
+ def items(self):
1209
+ """ """
1210
+ ...
1211
+
1212
+ def keyframe_delete(self):
1213
+ """ """
1214
+ ...
1215
+
1216
+ def keyframe_insert(self):
1217
+ """ """
1218
+ ...
1219
+
1220
+ def keys(self):
1221
+ """ """
1222
+ ...
1223
+
1224
+ def path_from_id(self):
1225
+ """ """
1226
+ ...
1227
+
1228
+ def path_resolve(self):
1229
+ """ """
1230
+ ...
1231
+
1232
+ def poll(self, context):
1233
+ """
1234
+
1235
+ :param context:
1236
+ """
1237
+ ...
1238
+
1239
+ def poll_message_set(self):
1240
+ """ """
1241
+ ...
1242
+
1243
+ def pop(self):
1244
+ """ """
1245
+ ...
1246
+
1247
+ def property_overridable_library_set(self):
1248
+ """ """
1249
+ ...
1250
+
1251
+ def property_unset(self):
1252
+ """ """
1253
+ ...
1254
+
1255
+ def type_recast(self):
1256
+ """ """
1257
+ ...
1258
+
1259
+ def values(self):
1260
+ """ """
1261
+ ...
1262
+
1263
+ class CLIP_OT_track_to_empty(bpy_types.Operator):
1264
+ """ """
1265
+
1266
+ bl_idname: typing.Any
1267
+ """ """
1268
+
1269
+ bl_label: typing.Any
1270
+ """ """
1271
+
1272
+ bl_options: typing.Any
1273
+ """ """
1274
+
1275
+ bl_rna: typing.Any
1276
+ """ """
1277
+
1278
+ id_data: typing.Any
1279
+ """ """
1280
+
1281
+ def as_keywords(self, ignore):
1282
+ """
1283
+
1284
+ :param ignore:
1285
+ """
1286
+ ...
1287
+
1288
+ def as_pointer(self):
1289
+ """ """
1290
+ ...
1291
+
1292
+ def bl_rna_get_subclass(self):
1293
+ """ """
1294
+ ...
1295
+
1296
+ def bl_rna_get_subclass_py(self):
1297
+ """ """
1298
+ ...
1299
+
1300
+ def driver_add(self):
1301
+ """ """
1302
+ ...
1303
+
1304
+ def driver_remove(self):
1305
+ """ """
1306
+ ...
1307
+
1308
+ def execute(self, context):
1309
+ """
1310
+
1311
+ :param context:
1312
+ """
1313
+ ...
1314
+
1315
+ def get(self):
1316
+ """ """
1317
+ ...
1318
+
1319
+ def id_properties_clear(self):
1320
+ """ """
1321
+ ...
1322
+
1323
+ def id_properties_ensure(self):
1324
+ """ """
1325
+ ...
1326
+
1327
+ def id_properties_ui(self):
1328
+ """ """
1329
+ ...
1330
+
1331
+ def is_property_hidden(self):
1332
+ """ """
1333
+ ...
1334
+
1335
+ def is_property_overridable_library(self):
1336
+ """ """
1337
+ ...
1338
+
1339
+ def is_property_readonly(self):
1340
+ """ """
1341
+ ...
1342
+
1343
+ def is_property_set(self):
1344
+ """ """
1345
+ ...
1346
+
1347
+ def items(self):
1348
+ """ """
1349
+ ...
1350
+
1351
+ def keyframe_delete(self):
1352
+ """ """
1353
+ ...
1354
+
1355
+ def keyframe_insert(self):
1356
+ """ """
1357
+ ...
1358
+
1359
+ def keys(self):
1360
+ """ """
1361
+ ...
1362
+
1363
+ def path_from_id(self):
1364
+ """ """
1365
+ ...
1366
+
1367
+ def path_resolve(self):
1368
+ """ """
1369
+ ...
1370
+
1371
+ def poll(self, context):
1372
+ """
1373
+
1374
+ :param context:
1375
+ """
1376
+ ...
1377
+
1378
+ def poll_message_set(self):
1379
+ """ """
1380
+ ...
1381
+
1382
+ def pop(self):
1383
+ """ """
1384
+ ...
1385
+
1386
+ def property_overridable_library_set(self):
1387
+ """ """
1388
+ ...
1389
+
1390
+ def property_unset(self):
1391
+ """ """
1392
+ ...
1393
+
1394
+ def type_recast(self):
1395
+ """ """
1396
+ ...
1397
+
1398
+ def values(self):
1399
+ """ """
1400
+ ...
1401
+
1402
+ def CLIP_camera_for_clip(context, clip):
1403
+ """ """
1404
+
1405
+ ...
1406
+
1407
+ def CLIP_default_settings_from_track(clip, track, framenr):
1408
+ """ """
1409
+
1410
+ ...
1411
+
1412
+ def CLIP_set_viewport_background(context, clip, clip_user):
1413
+ """ """
1414
+
1415
+ ...
1416
+
1417
+ def CLIP_spaces_walk(context, all_screens, tarea, tspace, callback, args):
1418
+ """ """
1419
+
1420
+ ...
1421
+
1422
+ def CLIP_track_view_selected(sc, track):
1423
+ """ """
628
1424
 
629
- def CLIP_camera_for_clip(context, clip): ...
630
- def CLIP_default_settings_from_track(clip, track, framenr): ...
631
- def CLIP_set_viewport_background(context, clip, clip_user): ...
632
- def CLIP_spaces_walk(context, all_screens, tarea, tspace, callback, args): ...
633
- def CLIP_track_view_selected(sc, track): ...
1425
+ ...