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,39 +4,51 @@ import bpy_types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  class TIME_HT_editor_buttons:
7
+ """ """
8
+
7
9
  def draw_header(self, context, layout):
8
10
  """
9
11
 
10
12
  :param context:
11
- :type context:
12
13
  :param layout:
13
- :type layout:
14
14
  """
15
15
  ...
16
16
 
17
- class TIME_MT_cache(bpy_types.Menu, bpy_types._GenericUI):
17
+ class TIME_MT_cache(bpy_types._GenericUI):
18
+ """ """
19
+
18
20
  bl_label: typing.Any
21
+ """ """
22
+
19
23
  bl_rna: typing.Any
24
+ """ """
25
+
20
26
  id_data: typing.Any
27
+ """ """
21
28
 
22
29
  def append(self, draw_func):
23
30
  """
24
31
 
25
32
  :param draw_func:
26
- :type draw_func:
27
33
  """
28
34
  ...
29
35
 
30
- def as_pointer(self): ...
31
- def bl_rna_get_subclass(self): ...
32
- def bl_rna_get_subclass_py(self): ...
36
+ def as_pointer(self):
37
+ """ """
38
+ ...
39
+
40
+ def bl_rna_get_subclass(self):
41
+ """ """
42
+ ...
43
+
44
+ def bl_rna_get_subclass_py(self):
45
+ """ """
46
+ ...
47
+
33
48
  def draw(self, context):
34
49
  """
35
50
 
36
- :param self:
37
- :type self:
38
51
  :param context:
39
- :type context:
40
52
  """
41
53
  ...
42
54
 
@@ -44,38 +56,81 @@ class TIME_MT_cache(bpy_types.Menu, bpy_types._GenericUI):
44
56
  """
45
57
 
46
58
  :param context:
47
- :type context:
48
59
  :param layout:
49
- :type layout:
50
60
  """
51
61
  ...
52
62
 
53
63
  def draw_preset(self, _context):
54
64
  """
55
65
 
56
- :param self:
57
- :type self:
58
66
  :param _context:
59
- :type _context:
60
- """
61
- ...
62
-
63
- def driver_add(self): ...
64
- def driver_remove(self): ...
65
- def get(self): ...
66
- def id_properties_clear(self): ...
67
- def id_properties_ensure(self): ...
68
- def id_properties_ui(self): ...
69
- def is_extended(self): ...
70
- def is_property_hidden(self): ...
71
- def is_property_overridable_library(self): ...
72
- def is_property_readonly(self): ...
73
- def is_property_set(self): ...
74
- def items(self): ...
75
- def keyframe_delete(self): ...
76
- def keyframe_insert(self): ...
77
- def keys(self): ...
78
- def path_from_id(self): ...
67
+ """
68
+ ...
69
+
70
+ def driver_add(self):
71
+ """ """
72
+ ...
73
+
74
+ def driver_remove(self):
75
+ """ """
76
+ ...
77
+
78
+ def get(self):
79
+ """ """
80
+ ...
81
+
82
+ def id_properties_clear(self):
83
+ """ """
84
+ ...
85
+
86
+ def id_properties_ensure(self):
87
+ """ """
88
+ ...
89
+
90
+ def id_properties_ui(self):
91
+ """ """
92
+ ...
93
+
94
+ def is_extended(self):
95
+ """ """
96
+ ...
97
+
98
+ def is_property_hidden(self):
99
+ """ """
100
+ ...
101
+
102
+ def is_property_overridable_library(self):
103
+ """ """
104
+ ...
105
+
106
+ def is_property_readonly(self):
107
+ """ """
108
+ ...
109
+
110
+ def is_property_set(self):
111
+ """ """
112
+ ...
113
+
114
+ def items(self):
115
+ """ """
116
+ ...
117
+
118
+ def keyframe_delete(self):
119
+ """ """
120
+ ...
121
+
122
+ def keyframe_insert(self):
123
+ """ """
124
+ ...
125
+
126
+ def keys(self):
127
+ """ """
128
+ ...
129
+
130
+ def path_from_id(self):
131
+ """ """
132
+ ...
133
+
79
134
  def path_menu(
80
135
  self,
81
136
  searchpaths,
@@ -89,74 +144,93 @@ class TIME_MT_cache(bpy_types.Menu, bpy_types._GenericUI):
89
144
  ):
90
145
  """
91
146
 
92
- :param self:
93
- :type self:
94
147
  :param searchpaths:
95
- :type searchpaths:
96
148
  :param operator:
97
- :type operator:
98
149
  :param props_default:
99
- :type props_default:
100
150
  :param prop_filepath:
101
- :type prop_filepath:
102
151
  :param filter_ext:
103
- :type filter_ext:
104
152
  :param filter_path:
105
- :type filter_path:
106
153
  :param display_name:
107
- :type display_name:
108
154
  :param add_operator:
109
- :type add_operator:
110
155
  """
111
156
  ...
112
157
 
113
- def path_resolve(self): ...
114
- def pop(self): ...
158
+ def path_resolve(self):
159
+ """ """
160
+ ...
161
+
162
+ def pop(self):
163
+ """ """
164
+ ...
165
+
115
166
  def prepend(self, draw_func):
116
167
  """
117
168
 
118
169
  :param draw_func:
119
- :type draw_func:
120
170
  """
121
171
  ...
122
172
 
123
- def property_overridable_library_set(self): ...
124
- def property_unset(self): ...
173
+ def property_overridable_library_set(self):
174
+ """ """
175
+ ...
176
+
177
+ def property_unset(self):
178
+ """ """
179
+ ...
180
+
125
181
  def remove(self, draw_func):
126
182
  """
127
183
 
128
184
  :param draw_func:
129
- :type draw_func:
130
185
  """
131
186
  ...
132
187
 
133
- def type_recast(self): ...
134
- def values(self): ...
188
+ def type_recast(self):
189
+ """ """
190
+ ...
191
+
192
+ def values(self):
193
+ """ """
194
+ ...
195
+
196
+ class TIME_MT_editor_menus(bpy_types._GenericUI):
197
+ """ """
135
198
 
136
- class TIME_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
137
199
  bl_idname: typing.Any
200
+ """ """
201
+
138
202
  bl_label: typing.Any
203
+ """ """
204
+
139
205
  bl_rna: typing.Any
206
+ """ """
207
+
140
208
  id_data: typing.Any
209
+ """ """
141
210
 
142
211
  def append(self, draw_func):
143
212
  """
144
213
 
145
214
  :param draw_func:
146
- :type draw_func:
147
215
  """
148
216
  ...
149
217
 
150
- def as_pointer(self): ...
151
- def bl_rna_get_subclass(self): ...
152
- def bl_rna_get_subclass_py(self): ...
218
+ def as_pointer(self):
219
+ """ """
220
+ ...
221
+
222
+ def bl_rna_get_subclass(self):
223
+ """ """
224
+ ...
225
+
226
+ def bl_rna_get_subclass_py(self):
227
+ """ """
228
+ ...
229
+
153
230
  def draw(self, context):
154
231
  """
155
232
 
156
- :param self:
157
- :type self:
158
233
  :param context:
159
- :type context:
160
234
  """
161
235
  ...
162
236
 
@@ -164,38 +238,81 @@ class TIME_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
164
238
  """
165
239
 
166
240
  :param context:
167
- :type context:
168
241
  :param layout:
169
- :type layout:
170
242
  """
171
243
  ...
172
244
 
173
245
  def draw_preset(self, _context):
174
246
  """
175
247
 
176
- :param self:
177
- :type self:
178
248
  :param _context:
179
- :type _context:
180
- """
181
- ...
182
-
183
- def driver_add(self): ...
184
- def driver_remove(self): ...
185
- def get(self): ...
186
- def id_properties_clear(self): ...
187
- def id_properties_ensure(self): ...
188
- def id_properties_ui(self): ...
189
- def is_extended(self): ...
190
- def is_property_hidden(self): ...
191
- def is_property_overridable_library(self): ...
192
- def is_property_readonly(self): ...
193
- def is_property_set(self): ...
194
- def items(self): ...
195
- def keyframe_delete(self): ...
196
- def keyframe_insert(self): ...
197
- def keys(self): ...
198
- def path_from_id(self): ...
249
+ """
250
+ ...
251
+
252
+ def driver_add(self):
253
+ """ """
254
+ ...
255
+
256
+ def driver_remove(self):
257
+ """ """
258
+ ...
259
+
260
+ def get(self):
261
+ """ """
262
+ ...
263
+
264
+ def id_properties_clear(self):
265
+ """ """
266
+ ...
267
+
268
+ def id_properties_ensure(self):
269
+ """ """
270
+ ...
271
+
272
+ def id_properties_ui(self):
273
+ """ """
274
+ ...
275
+
276
+ def is_extended(self):
277
+ """ """
278
+ ...
279
+
280
+ def is_property_hidden(self):
281
+ """ """
282
+ ...
283
+
284
+ def is_property_overridable_library(self):
285
+ """ """
286
+ ...
287
+
288
+ def is_property_readonly(self):
289
+ """ """
290
+ ...
291
+
292
+ def is_property_set(self):
293
+ """ """
294
+ ...
295
+
296
+ def items(self):
297
+ """ """
298
+ ...
299
+
300
+ def keyframe_delete(self):
301
+ """ """
302
+ ...
303
+
304
+ def keyframe_insert(self):
305
+ """ """
306
+ ...
307
+
308
+ def keys(self):
309
+ """ """
310
+ ...
311
+
312
+ def path_from_id(self):
313
+ """ """
314
+ ...
315
+
199
316
  def path_menu(
200
317
  self,
201
318
  searchpaths,
@@ -209,73 +326,90 @@ class TIME_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
209
326
  ):
210
327
  """
211
328
 
212
- :param self:
213
- :type self:
214
329
  :param searchpaths:
215
- :type searchpaths:
216
330
  :param operator:
217
- :type operator:
218
331
  :param props_default:
219
- :type props_default:
220
332
  :param prop_filepath:
221
- :type prop_filepath:
222
333
  :param filter_ext:
223
- :type filter_ext:
224
334
  :param filter_path:
225
- :type filter_path:
226
335
  :param display_name:
227
- :type display_name:
228
336
  :param add_operator:
229
- :type add_operator:
230
337
  """
231
338
  ...
232
339
 
233
- def path_resolve(self): ...
234
- def pop(self): ...
340
+ def path_resolve(self):
341
+ """ """
342
+ ...
343
+
344
+ def pop(self):
345
+ """ """
346
+ ...
347
+
235
348
  def prepend(self, draw_func):
236
349
  """
237
350
 
238
351
  :param draw_func:
239
- :type draw_func:
240
352
  """
241
353
  ...
242
354
 
243
- def property_overridable_library_set(self): ...
244
- def property_unset(self): ...
355
+ def property_overridable_library_set(self):
356
+ """ """
357
+ ...
358
+
359
+ def property_unset(self):
360
+ """ """
361
+ ...
362
+
245
363
  def remove(self, draw_func):
246
364
  """
247
365
 
248
366
  :param draw_func:
249
- :type draw_func:
250
367
  """
251
368
  ...
252
369
 
253
- def type_recast(self): ...
254
- def values(self): ...
370
+ def type_recast(self):
371
+ """ """
372
+ ...
373
+
374
+ def values(self):
375
+ """ """
376
+ ...
377
+
378
+ class TIME_MT_marker(bpy_types._GenericUI):
379
+ """ """
255
380
 
256
- class TIME_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
257
381
  bl_label: typing.Any
382
+ """ """
383
+
258
384
  bl_rna: typing.Any
385
+ """ """
386
+
259
387
  id_data: typing.Any
388
+ """ """
260
389
 
261
390
  def append(self, draw_func):
262
391
  """
263
392
 
264
393
  :param draw_func:
265
- :type draw_func:
266
394
  """
267
395
  ...
268
396
 
269
- def as_pointer(self): ...
270
- def bl_rna_get_subclass(self): ...
271
- def bl_rna_get_subclass_py(self): ...
397
+ def as_pointer(self):
398
+ """ """
399
+ ...
400
+
401
+ def bl_rna_get_subclass(self):
402
+ """ """
403
+ ...
404
+
405
+ def bl_rna_get_subclass_py(self):
406
+ """ """
407
+ ...
408
+
272
409
  def draw(self, context):
273
410
  """
274
411
 
275
- :param self:
276
- :type self:
277
412
  :param context:
278
- :type context:
279
413
  """
280
414
  ...
281
415
 
@@ -283,38 +417,81 @@ class TIME_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
283
417
  """
284
418
 
285
419
  :param context:
286
- :type context:
287
420
  :param layout:
288
- :type layout:
289
421
  """
290
422
  ...
291
423
 
292
424
  def draw_preset(self, _context):
293
425
  """
294
426
 
295
- :param self:
296
- :type self:
297
427
  :param _context:
298
- :type _context:
299
- """
300
- ...
301
-
302
- def driver_add(self): ...
303
- def driver_remove(self): ...
304
- def get(self): ...
305
- def id_properties_clear(self): ...
306
- def id_properties_ensure(self): ...
307
- def id_properties_ui(self): ...
308
- def is_extended(self): ...
309
- def is_property_hidden(self): ...
310
- def is_property_overridable_library(self): ...
311
- def is_property_readonly(self): ...
312
- def is_property_set(self): ...
313
- def items(self): ...
314
- def keyframe_delete(self): ...
315
- def keyframe_insert(self): ...
316
- def keys(self): ...
317
- def path_from_id(self): ...
428
+ """
429
+ ...
430
+
431
+ def driver_add(self):
432
+ """ """
433
+ ...
434
+
435
+ def driver_remove(self):
436
+ """ """
437
+ ...
438
+
439
+ def get(self):
440
+ """ """
441
+ ...
442
+
443
+ def id_properties_clear(self):
444
+ """ """
445
+ ...
446
+
447
+ def id_properties_ensure(self):
448
+ """ """
449
+ ...
450
+
451
+ def id_properties_ui(self):
452
+ """ """
453
+ ...
454
+
455
+ def is_extended(self):
456
+ """ """
457
+ ...
458
+
459
+ def is_property_hidden(self):
460
+ """ """
461
+ ...
462
+
463
+ def is_property_overridable_library(self):
464
+ """ """
465
+ ...
466
+
467
+ def is_property_readonly(self):
468
+ """ """
469
+ ...
470
+
471
+ def is_property_set(self):
472
+ """ """
473
+ ...
474
+
475
+ def items(self):
476
+ """ """
477
+ ...
478
+
479
+ def keyframe_delete(self):
480
+ """ """
481
+ ...
482
+
483
+ def keyframe_insert(self):
484
+ """ """
485
+ ...
486
+
487
+ def keys(self):
488
+ """ """
489
+ ...
490
+
491
+ def path_from_id(self):
492
+ """ """
493
+ ...
494
+
318
495
  def path_menu(
319
496
  self,
320
497
  searchpaths,
@@ -328,73 +505,90 @@ class TIME_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
328
505
  ):
329
506
  """
330
507
 
331
- :param self:
332
- :type self:
333
508
  :param searchpaths:
334
- :type searchpaths:
335
509
  :param operator:
336
- :type operator:
337
510
  :param props_default:
338
- :type props_default:
339
511
  :param prop_filepath:
340
- :type prop_filepath:
341
512
  :param filter_ext:
342
- :type filter_ext:
343
513
  :param filter_path:
344
- :type filter_path:
345
514
  :param display_name:
346
- :type display_name:
347
515
  :param add_operator:
348
- :type add_operator:
349
516
  """
350
517
  ...
351
518
 
352
- def path_resolve(self): ...
353
- def pop(self): ...
519
+ def path_resolve(self):
520
+ """ """
521
+ ...
522
+
523
+ def pop(self):
524
+ """ """
525
+ ...
526
+
354
527
  def prepend(self, draw_func):
355
528
  """
356
529
 
357
530
  :param draw_func:
358
- :type draw_func:
359
531
  """
360
532
  ...
361
533
 
362
- def property_overridable_library_set(self): ...
363
- def property_unset(self): ...
534
+ def property_overridable_library_set(self):
535
+ """ """
536
+ ...
537
+
538
+ def property_unset(self):
539
+ """ """
540
+ ...
541
+
364
542
  def remove(self, draw_func):
365
543
  """
366
544
 
367
545
  :param draw_func:
368
- :type draw_func:
369
546
  """
370
547
  ...
371
548
 
372
- def type_recast(self): ...
373
- def values(self): ...
549
+ def type_recast(self):
550
+ """ """
551
+ ...
552
+
553
+ def values(self):
554
+ """ """
555
+ ...
556
+
557
+ class TIME_MT_view(bpy_types._GenericUI):
558
+ """ """
374
559
 
375
- class TIME_MT_view(bpy_types.Menu, bpy_types._GenericUI):
376
560
  bl_label: typing.Any
561
+ """ """
562
+
377
563
  bl_rna: typing.Any
564
+ """ """
565
+
378
566
  id_data: typing.Any
567
+ """ """
379
568
 
380
569
  def append(self, draw_func):
381
570
  """
382
571
 
383
572
  :param draw_func:
384
- :type draw_func:
385
573
  """
386
574
  ...
387
575
 
388
- def as_pointer(self): ...
389
- def bl_rna_get_subclass(self): ...
390
- def bl_rna_get_subclass_py(self): ...
576
+ def as_pointer(self):
577
+ """ """
578
+ ...
579
+
580
+ def bl_rna_get_subclass(self):
581
+ """ """
582
+ ...
583
+
584
+ def bl_rna_get_subclass_py(self):
585
+ """ """
586
+ ...
587
+
391
588
  def draw(self, context):
392
589
  """
393
590
 
394
- :param self:
395
- :type self:
396
591
  :param context:
397
- :type context:
398
592
  """
399
593
  ...
400
594
 
@@ -402,38 +596,81 @@ class TIME_MT_view(bpy_types.Menu, bpy_types._GenericUI):
402
596
  """
403
597
 
404
598
  :param context:
405
- :type context:
406
599
  :param layout:
407
- :type layout:
408
600
  """
409
601
  ...
410
602
 
411
603
  def draw_preset(self, _context):
412
604
  """
413
605
 
414
- :param self:
415
- :type self:
416
606
  :param _context:
417
- :type _context:
418
- """
419
- ...
420
-
421
- def driver_add(self): ...
422
- def driver_remove(self): ...
423
- def get(self): ...
424
- def id_properties_clear(self): ...
425
- def id_properties_ensure(self): ...
426
- def id_properties_ui(self): ...
427
- def is_extended(self): ...
428
- def is_property_hidden(self): ...
429
- def is_property_overridable_library(self): ...
430
- def is_property_readonly(self): ...
431
- def is_property_set(self): ...
432
- def items(self): ...
433
- def keyframe_delete(self): ...
434
- def keyframe_insert(self): ...
435
- def keys(self): ...
436
- def path_from_id(self): ...
607
+ """
608
+ ...
609
+
610
+ def driver_add(self):
611
+ """ """
612
+ ...
613
+
614
+ def driver_remove(self):
615
+ """ """
616
+ ...
617
+
618
+ def get(self):
619
+ """ """
620
+ ...
621
+
622
+ def id_properties_clear(self):
623
+ """ """
624
+ ...
625
+
626
+ def id_properties_ensure(self):
627
+ """ """
628
+ ...
629
+
630
+ def id_properties_ui(self):
631
+ """ """
632
+ ...
633
+
634
+ def is_extended(self):
635
+ """ """
636
+ ...
637
+
638
+ def is_property_hidden(self):
639
+ """ """
640
+ ...
641
+
642
+ def is_property_overridable_library(self):
643
+ """ """
644
+ ...
645
+
646
+ def is_property_readonly(self):
647
+ """ """
648
+ ...
649
+
650
+ def is_property_set(self):
651
+ """ """
652
+ ...
653
+
654
+ def items(self):
655
+ """ """
656
+ ...
657
+
658
+ def keyframe_delete(self):
659
+ """ """
660
+ ...
661
+
662
+ def keyframe_insert(self):
663
+ """ """
664
+ ...
665
+
666
+ def keys(self):
667
+ """ """
668
+ ...
669
+
670
+ def path_from_id(self):
671
+ """ """
672
+ ...
673
+
437
674
  def path_menu(
438
675
  self,
439
676
  searchpaths,
@@ -447,309 +684,557 @@ class TIME_MT_view(bpy_types.Menu, bpy_types._GenericUI):
447
684
  ):
448
685
  """
449
686
 
450
- :param self:
451
- :type self:
452
687
  :param searchpaths:
453
- :type searchpaths:
454
688
  :param operator:
455
- :type operator:
456
689
  :param props_default:
457
- :type props_default:
458
690
  :param prop_filepath:
459
- :type prop_filepath:
460
691
  :param filter_ext:
461
- :type filter_ext:
462
692
  :param filter_path:
463
- :type filter_path:
464
693
  :param display_name:
465
- :type display_name:
466
694
  :param add_operator:
467
- :type add_operator:
468
695
  """
469
696
  ...
470
697
 
471
- def path_resolve(self): ...
472
- def pop(self): ...
698
+ def path_resolve(self):
699
+ """ """
700
+ ...
701
+
702
+ def pop(self):
703
+ """ """
704
+ ...
705
+
473
706
  def prepend(self, draw_func):
474
707
  """
475
708
 
476
709
  :param draw_func:
477
- :type draw_func:
478
710
  """
479
711
  ...
480
712
 
481
- def property_overridable_library_set(self): ...
482
- def property_unset(self): ...
713
+ def property_overridable_library_set(self):
714
+ """ """
715
+ ...
716
+
717
+ def property_unset(self):
718
+ """ """
719
+ ...
720
+
483
721
  def remove(self, draw_func):
484
722
  """
485
723
 
486
724
  :param draw_func:
487
- :type draw_func:
488
725
  """
489
726
  ...
490
727
 
491
- def type_recast(self): ...
492
- def values(self): ...
493
-
494
- class TimelinePanelButtons:
495
- bl_region_type: typing.Any
496
- bl_space_type: typing.Any
497
-
498
- def has_timeline(self, context):
499
- """
728
+ def type_recast(self):
729
+ """ """
730
+ ...
500
731
 
501
- :param context:
502
- :type context:
503
- """
732
+ def values(self):
733
+ """ """
504
734
  ...
505
735
 
506
- class TIME_PT_auto_keyframing(
507
- TimelinePanelButtons, bpy_types.Panel, bpy_types._GenericUI
508
- ):
736
+ class TIME_PT_auto_keyframing(bpy_types._GenericUI):
737
+ """ """
738
+
509
739
  bl_label: typing.Any
740
+ """ """
741
+
510
742
  bl_options: typing.Any
743
+ """ """
744
+
511
745
  bl_region_type: typing.Any
746
+ """ """
747
+
512
748
  bl_rna: typing.Any
749
+ """ """
750
+
513
751
  bl_space_type: typing.Any
752
+ """ """
753
+
514
754
  bl_ui_units_x: typing.Any
755
+ """ """
756
+
515
757
  id_data: typing.Any
758
+ """ """
516
759
 
517
760
  def append(self, draw_func):
518
761
  """
519
762
 
520
763
  :param draw_func:
521
- :type draw_func:
522
764
  """
523
765
  ...
524
766
 
525
- def as_pointer(self): ...
526
- def bl_rna_get_subclass(self): ...
527
- def bl_rna_get_subclass_py(self): ...
767
+ def as_pointer(self):
768
+ """ """
769
+ ...
770
+
771
+ def bl_rna_get_subclass(self):
772
+ """ """
773
+ ...
774
+
775
+ def bl_rna_get_subclass_py(self):
776
+ """ """
777
+ ...
778
+
528
779
  def draw(self, context):
529
780
  """
530
781
 
531
- :param self:
532
- :type self:
533
782
  :param context:
534
- :type context:
535
783
  """
536
784
  ...
537
785
 
538
- def driver_add(self): ...
539
- def driver_remove(self): ...
540
- def get(self): ...
786
+ def driver_add(self):
787
+ """ """
788
+ ...
789
+
790
+ def driver_remove(self):
791
+ """ """
792
+ ...
793
+
794
+ def get(self):
795
+ """ """
796
+ ...
797
+
541
798
  def has_timeline(self, context):
542
799
  """
543
800
 
544
801
  :param context:
545
- :type context:
546
- """
547
- ...
548
-
549
- def id_properties_clear(self): ...
550
- def id_properties_ensure(self): ...
551
- def id_properties_ui(self): ...
552
- def is_extended(self): ...
553
- def is_property_hidden(self): ...
554
- def is_property_overridable_library(self): ...
555
- def is_property_readonly(self): ...
556
- def is_property_set(self): ...
557
- def items(self): ...
558
- def keyframe_delete(self): ...
559
- def keyframe_insert(self): ...
560
- def keys(self): ...
561
- def path_from_id(self): ...
562
- def path_resolve(self): ...
802
+ """
803
+ ...
804
+
805
+ def id_properties_clear(self):
806
+ """ """
807
+ ...
808
+
809
+ def id_properties_ensure(self):
810
+ """ """
811
+ ...
812
+
813
+ def id_properties_ui(self):
814
+ """ """
815
+ ...
816
+
817
+ def is_extended(self):
818
+ """ """
819
+ ...
820
+
821
+ def is_property_hidden(self):
822
+ """ """
823
+ ...
824
+
825
+ def is_property_overridable_library(self):
826
+ """ """
827
+ ...
828
+
829
+ def is_property_readonly(self):
830
+ """ """
831
+ ...
832
+
833
+ def is_property_set(self):
834
+ """ """
835
+ ...
836
+
837
+ def items(self):
838
+ """ """
839
+ ...
840
+
841
+ def keyframe_delete(self):
842
+ """ """
843
+ ...
844
+
845
+ def keyframe_insert(self):
846
+ """ """
847
+ ...
848
+
849
+ def keys(self):
850
+ """ """
851
+ ...
852
+
853
+ def path_from_id(self):
854
+ """ """
855
+ ...
856
+
857
+ def path_resolve(self):
858
+ """ """
859
+ ...
860
+
563
861
  def poll(self, context):
564
862
  """
565
863
 
566
864
  :param context:
567
- :type context:
568
865
  """
569
866
  ...
570
867
 
571
- def pop(self): ...
868
+ def pop(self):
869
+ """ """
870
+ ...
871
+
572
872
  def prepend(self, draw_func):
573
873
  """
574
874
 
575
875
  :param draw_func:
576
- :type draw_func:
577
876
  """
578
877
  ...
579
878
 
580
- def property_overridable_library_set(self): ...
581
- def property_unset(self): ...
879
+ def property_overridable_library_set(self):
880
+ """ """
881
+ ...
882
+
883
+ def property_unset(self):
884
+ """ """
885
+ ...
886
+
582
887
  def remove(self, draw_func):
583
888
  """
584
889
 
585
890
  :param draw_func:
586
- :type draw_func:
587
891
  """
588
892
  ...
589
893
 
590
- def type_recast(self): ...
591
- def values(self): ...
894
+ def type_recast(self):
895
+ """ """
896
+ ...
897
+
898
+ def values(self):
899
+ """ """
900
+ ...
901
+
902
+ class TIME_PT_keyframing_settings(bpy_types._GenericUI):
903
+ """ """
592
904
 
593
- class TIME_PT_keyframing_settings(
594
- TimelinePanelButtons, bpy_types.Panel, bpy_types._GenericUI
595
- ):
596
905
  bl_label: typing.Any
906
+ """ """
907
+
597
908
  bl_options: typing.Any
909
+ """ """
910
+
598
911
  bl_region_type: typing.Any
912
+ """ """
913
+
599
914
  bl_rna: typing.Any
915
+ """ """
916
+
600
917
  bl_space_type: typing.Any
918
+ """ """
919
+
601
920
  id_data: typing.Any
921
+ """ """
602
922
 
603
923
  def append(self, draw_func):
604
924
  """
605
925
 
606
926
  :param draw_func:
607
- :type draw_func:
608
927
  """
609
928
  ...
610
929
 
611
- def as_pointer(self): ...
612
- def bl_rna_get_subclass(self): ...
613
- def bl_rna_get_subclass_py(self): ...
930
+ def as_pointer(self):
931
+ """ """
932
+ ...
933
+
934
+ def bl_rna_get_subclass(self):
935
+ """ """
936
+ ...
937
+
938
+ def bl_rna_get_subclass_py(self):
939
+ """ """
940
+ ...
941
+
614
942
  def draw(self, context):
615
943
  """
616
944
 
617
- :param self:
618
- :type self:
619
945
  :param context:
620
- :type context:
621
946
  """
622
947
  ...
623
948
 
624
- def driver_add(self): ...
625
- def driver_remove(self): ...
626
- def get(self): ...
949
+ def driver_add(self):
950
+ """ """
951
+ ...
952
+
953
+ def driver_remove(self):
954
+ """ """
955
+ ...
956
+
957
+ def get(self):
958
+ """ """
959
+ ...
960
+
627
961
  def has_timeline(self, context):
628
962
  """
629
963
 
630
964
  :param context:
631
- :type context:
632
- """
633
- ...
634
-
635
- def id_properties_clear(self): ...
636
- def id_properties_ensure(self): ...
637
- def id_properties_ui(self): ...
638
- def is_extended(self): ...
639
- def is_property_hidden(self): ...
640
- def is_property_overridable_library(self): ...
641
- def is_property_readonly(self): ...
642
- def is_property_set(self): ...
643
- def items(self): ...
644
- def keyframe_delete(self): ...
645
- def keyframe_insert(self): ...
646
- def keys(self): ...
647
- def path_from_id(self): ...
648
- def path_resolve(self): ...
965
+ """
966
+ ...
967
+
968
+ def id_properties_clear(self):
969
+ """ """
970
+ ...
971
+
972
+ def id_properties_ensure(self):
973
+ """ """
974
+ ...
975
+
976
+ def id_properties_ui(self):
977
+ """ """
978
+ ...
979
+
980
+ def is_extended(self):
981
+ """ """
982
+ ...
983
+
984
+ def is_property_hidden(self):
985
+ """ """
986
+ ...
987
+
988
+ def is_property_overridable_library(self):
989
+ """ """
990
+ ...
991
+
992
+ def is_property_readonly(self):
993
+ """ """
994
+ ...
995
+
996
+ def is_property_set(self):
997
+ """ """
998
+ ...
999
+
1000
+ def items(self):
1001
+ """ """
1002
+ ...
1003
+
1004
+ def keyframe_delete(self):
1005
+ """ """
1006
+ ...
1007
+
1008
+ def keyframe_insert(self):
1009
+ """ """
1010
+ ...
1011
+
1012
+ def keys(self):
1013
+ """ """
1014
+ ...
1015
+
1016
+ def path_from_id(self):
1017
+ """ """
1018
+ ...
1019
+
1020
+ def path_resolve(self):
1021
+ """ """
1022
+ ...
1023
+
649
1024
  def poll(self, context):
650
1025
  """
651
1026
 
652
1027
  :param context:
653
- :type context:
654
1028
  """
655
1029
  ...
656
1030
 
657
- def pop(self): ...
1031
+ def pop(self):
1032
+ """ """
1033
+ ...
1034
+
658
1035
  def prepend(self, draw_func):
659
1036
  """
660
1037
 
661
1038
  :param draw_func:
662
- :type draw_func:
663
1039
  """
664
1040
  ...
665
1041
 
666
- def property_overridable_library_set(self): ...
667
- def property_unset(self): ...
1042
+ def property_overridable_library_set(self):
1043
+ """ """
1044
+ ...
1045
+
1046
+ def property_unset(self):
1047
+ """ """
1048
+ ...
1049
+
668
1050
  def remove(self, draw_func):
669
1051
  """
670
1052
 
671
1053
  :param draw_func:
672
- :type draw_func:
673
1054
  """
674
1055
  ...
675
1056
 
676
- def type_recast(self): ...
677
- def values(self): ...
1057
+ def type_recast(self):
1058
+ """ """
1059
+ ...
1060
+
1061
+ def values(self):
1062
+ """ """
1063
+ ...
1064
+
1065
+ class TIME_PT_playback(bpy_types._GenericUI):
1066
+ """ """
678
1067
 
679
- class TIME_PT_playback(TimelinePanelButtons, bpy_types.Panel, bpy_types._GenericUI):
680
1068
  bl_label: typing.Any
1069
+ """ """
1070
+
681
1071
  bl_region_type: typing.Any
1072
+ """ """
1073
+
682
1074
  bl_rna: typing.Any
1075
+ """ """
1076
+
683
1077
  bl_space_type: typing.Any
1078
+ """ """
1079
+
684
1080
  bl_ui_units_x: typing.Any
1081
+ """ """
1082
+
685
1083
  id_data: typing.Any
1084
+ """ """
686
1085
 
687
1086
  def append(self, draw_func):
688
1087
  """
689
1088
 
690
1089
  :param draw_func:
691
- :type draw_func:
692
1090
  """
693
1091
  ...
694
1092
 
695
- def as_pointer(self): ...
696
- def bl_rna_get_subclass(self): ...
697
- def bl_rna_get_subclass_py(self): ...
1093
+ def as_pointer(self):
1094
+ """ """
1095
+ ...
1096
+
1097
+ def bl_rna_get_subclass(self):
1098
+ """ """
1099
+ ...
1100
+
1101
+ def bl_rna_get_subclass_py(self):
1102
+ """ """
1103
+ ...
1104
+
698
1105
  def draw(self, context):
699
1106
  """
700
1107
 
701
- :param self:
702
- :type self:
703
1108
  :param context:
704
- :type context:
705
1109
  """
706
1110
  ...
707
1111
 
708
- def driver_add(self): ...
709
- def driver_remove(self): ...
710
- def get(self): ...
1112
+ def driver_add(self):
1113
+ """ """
1114
+ ...
1115
+
1116
+ def driver_remove(self):
1117
+ """ """
1118
+ ...
1119
+
1120
+ def get(self):
1121
+ """ """
1122
+ ...
1123
+
711
1124
  def has_timeline(self, context):
712
1125
  """
713
1126
 
714
1127
  :param context:
715
- :type context:
716
- """
717
- ...
718
-
719
- def id_properties_clear(self): ...
720
- def id_properties_ensure(self): ...
721
- def id_properties_ui(self): ...
722
- def is_extended(self): ...
723
- def is_property_hidden(self): ...
724
- def is_property_overridable_library(self): ...
725
- def is_property_readonly(self): ...
726
- def is_property_set(self): ...
727
- def items(self): ...
728
- def keyframe_delete(self): ...
729
- def keyframe_insert(self): ...
730
- def keys(self): ...
731
- def path_from_id(self): ...
732
- def path_resolve(self): ...
733
- def pop(self): ...
1128
+ """
1129
+ ...
1130
+
1131
+ def id_properties_clear(self):
1132
+ """ """
1133
+ ...
1134
+
1135
+ def id_properties_ensure(self):
1136
+ """ """
1137
+ ...
1138
+
1139
+ def id_properties_ui(self):
1140
+ """ """
1141
+ ...
1142
+
1143
+ def is_extended(self):
1144
+ """ """
1145
+ ...
1146
+
1147
+ def is_property_hidden(self):
1148
+ """ """
1149
+ ...
1150
+
1151
+ def is_property_overridable_library(self):
1152
+ """ """
1153
+ ...
1154
+
1155
+ def is_property_readonly(self):
1156
+ """ """
1157
+ ...
1158
+
1159
+ def is_property_set(self):
1160
+ """ """
1161
+ ...
1162
+
1163
+ def items(self):
1164
+ """ """
1165
+ ...
1166
+
1167
+ def keyframe_delete(self):
1168
+ """ """
1169
+ ...
1170
+
1171
+ def keyframe_insert(self):
1172
+ """ """
1173
+ ...
1174
+
1175
+ def keys(self):
1176
+ """ """
1177
+ ...
1178
+
1179
+ def path_from_id(self):
1180
+ """ """
1181
+ ...
1182
+
1183
+ def path_resolve(self):
1184
+ """ """
1185
+ ...
1186
+
1187
+ def pop(self):
1188
+ """ """
1189
+ ...
1190
+
734
1191
  def prepend(self, draw_func):
735
1192
  """
736
1193
 
737
1194
  :param draw_func:
738
- :type draw_func:
739
1195
  """
740
1196
  ...
741
1197
 
742
- def property_overridable_library_set(self): ...
743
- def property_unset(self): ...
1198
+ def property_overridable_library_set(self):
1199
+ """ """
1200
+ ...
1201
+
1202
+ def property_unset(self):
1203
+ """ """
1204
+ ...
1205
+
744
1206
  def remove(self, draw_func):
745
1207
  """
746
1208
 
747
1209
  :param draw_func:
748
- :type draw_func:
749
1210
  """
750
1211
  ...
751
1212
 
752
- def type_recast(self): ...
753
- def values(self): ...
1213
+ def type_recast(self):
1214
+ """ """
1215
+ ...
1216
+
1217
+ def values(self):
1218
+ """ """
1219
+ ...
1220
+
1221
+ class TimelinePanelButtons:
1222
+ """ """
1223
+
1224
+ bl_region_type: typing.Any
1225
+ """ """
1226
+
1227
+ bl_space_type: typing.Any
1228
+ """ """
1229
+
1230
+ def has_timeline(self, context):
1231
+ """
1232
+
1233
+ :param context:
1234
+ """
1235
+ ...
1236
+
1237
+ def marker_menu_generic(layout, context):
1238
+ """ """
754
1239
 
755
- def marker_menu_generic(layout, context): ...
1240
+ ...