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
@@ -1,98 +1,186 @@
1
1
  import typing
2
- import bl_ui.space_dopesheet
3
2
  import bpy_types
4
3
 
5
4
  GenericType = typing.TypeVar("GenericType")
6
5
 
7
- class NLA_HT_header(bpy_types.Header, bpy_types._GenericUI):
6
+ class NLA_HT_header(bpy_types._GenericUI):
7
+ """ """
8
+
8
9
  bl_rna: typing.Any
10
+ """ """
11
+
9
12
  bl_space_type: typing.Any
13
+ """ """
14
+
10
15
  id_data: typing.Any
16
+ """ """
11
17
 
12
18
  def append(self, draw_func):
13
19
  """
14
20
 
15
21
  :param draw_func:
16
- :type draw_func:
17
22
  """
18
23
  ...
19
24
 
20
- def as_pointer(self): ...
21
- def bl_rna_get_subclass(self): ...
22
- def bl_rna_get_subclass_py(self): ...
25
+ def as_pointer(self):
26
+ """ """
27
+ ...
28
+
29
+ def bl_rna_get_subclass(self):
30
+ """ """
31
+ ...
32
+
33
+ def bl_rna_get_subclass_py(self):
34
+ """ """
35
+ ...
36
+
23
37
  def draw(self, context):
24
38
  """
25
39
 
26
- :param self:
27
- :type self:
28
40
  :param context:
29
- :type context:
30
- """
31
- ...
32
-
33
- def driver_add(self): ...
34
- def driver_remove(self): ...
35
- def get(self): ...
36
- def id_properties_clear(self): ...
37
- def id_properties_ensure(self): ...
38
- def id_properties_ui(self): ...
39
- def is_extended(self): ...
40
- def is_property_hidden(self): ...
41
- def is_property_overridable_library(self): ...
42
- def is_property_readonly(self): ...
43
- def is_property_set(self): ...
44
- def items(self): ...
45
- def keyframe_delete(self): ...
46
- def keyframe_insert(self): ...
47
- def keys(self): ...
48
- def path_from_id(self): ...
49
- def path_resolve(self): ...
50
- def pop(self): ...
41
+ """
42
+ ...
43
+
44
+ def driver_add(self):
45
+ """ """
46
+ ...
47
+
48
+ def driver_remove(self):
49
+ """ """
50
+ ...
51
+
52
+ def get(self):
53
+ """ """
54
+ ...
55
+
56
+ def id_properties_clear(self):
57
+ """ """
58
+ ...
59
+
60
+ def id_properties_ensure(self):
61
+ """ """
62
+ ...
63
+
64
+ def id_properties_ui(self):
65
+ """ """
66
+ ...
67
+
68
+ def is_extended(self):
69
+ """ """
70
+ ...
71
+
72
+ def is_property_hidden(self):
73
+ """ """
74
+ ...
75
+
76
+ def is_property_overridable_library(self):
77
+ """ """
78
+ ...
79
+
80
+ def is_property_readonly(self):
81
+ """ """
82
+ ...
83
+
84
+ def is_property_set(self):
85
+ """ """
86
+ ...
87
+
88
+ def items(self):
89
+ """ """
90
+ ...
91
+
92
+ def keyframe_delete(self):
93
+ """ """
94
+ ...
95
+
96
+ def keyframe_insert(self):
97
+ """ """
98
+ ...
99
+
100
+ def keys(self):
101
+ """ """
102
+ ...
103
+
104
+ def path_from_id(self):
105
+ """ """
106
+ ...
107
+
108
+ def path_resolve(self):
109
+ """ """
110
+ ...
111
+
112
+ def pop(self):
113
+ """ """
114
+ ...
115
+
51
116
  def prepend(self, draw_func):
52
117
  """
53
118
 
54
119
  :param draw_func:
55
- :type draw_func:
56
120
  """
57
121
  ...
58
122
 
59
- def property_overridable_library_set(self): ...
60
- def property_unset(self): ...
123
+ def property_overridable_library_set(self):
124
+ """ """
125
+ ...
126
+
127
+ def property_unset(self):
128
+ """ """
129
+ ...
130
+
61
131
  def remove(self, draw_func):
62
132
  """
63
133
 
64
134
  :param draw_func:
65
- :type draw_func:
66
135
  """
67
136
  ...
68
137
 
69
- def type_recast(self): ...
70
- def values(self): ...
138
+ def type_recast(self):
139
+ """ """
140
+ ...
141
+
142
+ def values(self):
143
+ """ """
144
+ ...
145
+
146
+ class NLA_MT_add(bpy_types._GenericUI):
147
+ """ """
71
148
 
72
- class NLA_MT_add(bpy_types.Menu, bpy_types._GenericUI):
73
149
  bl_label: typing.Any
150
+ """ """
151
+
74
152
  bl_rna: typing.Any
153
+ """ """
154
+
75
155
  bl_translation_context: typing.Any
156
+ """ """
157
+
76
158
  id_data: typing.Any
159
+ """ """
77
160
 
78
161
  def append(self, draw_func):
79
162
  """
80
163
 
81
164
  :param draw_func:
82
- :type draw_func:
83
165
  """
84
166
  ...
85
167
 
86
- def as_pointer(self): ...
87
- def bl_rna_get_subclass(self): ...
88
- def bl_rna_get_subclass_py(self): ...
168
+ def as_pointer(self):
169
+ """ """
170
+ ...
171
+
172
+ def bl_rna_get_subclass(self):
173
+ """ """
174
+ ...
175
+
176
+ def bl_rna_get_subclass_py(self):
177
+ """ """
178
+ ...
179
+
89
180
  def draw(self, _context):
90
181
  """
91
182
 
92
- :param self:
93
- :type self:
94
183
  :param _context:
95
- :type _context:
96
184
  """
97
185
  ...
98
186
 
@@ -100,38 +188,81 @@ class NLA_MT_add(bpy_types.Menu, bpy_types._GenericUI):
100
188
  """
101
189
 
102
190
  :param context:
103
- :type context:
104
191
  :param layout:
105
- :type layout:
106
192
  """
107
193
  ...
108
194
 
109
195
  def draw_preset(self, _context):
110
196
  """
111
197
 
112
- :param self:
113
- :type self:
114
198
  :param _context:
115
- :type _context:
116
- """
117
- ...
118
-
119
- def driver_add(self): ...
120
- def driver_remove(self): ...
121
- def get(self): ...
122
- def id_properties_clear(self): ...
123
- def id_properties_ensure(self): ...
124
- def id_properties_ui(self): ...
125
- def is_extended(self): ...
126
- def is_property_hidden(self): ...
127
- def is_property_overridable_library(self): ...
128
- def is_property_readonly(self): ...
129
- def is_property_set(self): ...
130
- def items(self): ...
131
- def keyframe_delete(self): ...
132
- def keyframe_insert(self): ...
133
- def keys(self): ...
134
- def path_from_id(self): ...
199
+ """
200
+ ...
201
+
202
+ def driver_add(self):
203
+ """ """
204
+ ...
205
+
206
+ def driver_remove(self):
207
+ """ """
208
+ ...
209
+
210
+ def get(self):
211
+ """ """
212
+ ...
213
+
214
+ def id_properties_clear(self):
215
+ """ """
216
+ ...
217
+
218
+ def id_properties_ensure(self):
219
+ """ """
220
+ ...
221
+
222
+ def id_properties_ui(self):
223
+ """ """
224
+ ...
225
+
226
+ def is_extended(self):
227
+ """ """
228
+ ...
229
+
230
+ def is_property_hidden(self):
231
+ """ """
232
+ ...
233
+
234
+ def is_property_overridable_library(self):
235
+ """ """
236
+ ...
237
+
238
+ def is_property_readonly(self):
239
+ """ """
240
+ ...
241
+
242
+ def is_property_set(self):
243
+ """ """
244
+ ...
245
+
246
+ def items(self):
247
+ """ """
248
+ ...
249
+
250
+ def keyframe_delete(self):
251
+ """ """
252
+ ...
253
+
254
+ def keyframe_insert(self):
255
+ """ """
256
+ ...
257
+
258
+ def keys(self):
259
+ """ """
260
+ ...
261
+
262
+ def path_from_id(self):
263
+ """ """
264
+ ...
265
+
135
266
  def path_menu(
136
267
  self,
137
268
  searchpaths,
@@ -145,73 +276,90 @@ class NLA_MT_add(bpy_types.Menu, bpy_types._GenericUI):
145
276
  ):
146
277
  """
147
278
 
148
- :param self:
149
- :type self:
150
279
  :param searchpaths:
151
- :type searchpaths:
152
280
  :param operator:
153
- :type operator:
154
281
  :param props_default:
155
- :type props_default:
156
282
  :param prop_filepath:
157
- :type prop_filepath:
158
283
  :param filter_ext:
159
- :type filter_ext:
160
284
  :param filter_path:
161
- :type filter_path:
162
285
  :param display_name:
163
- :type display_name:
164
286
  :param add_operator:
165
- :type add_operator:
166
287
  """
167
288
  ...
168
289
 
169
- def path_resolve(self): ...
170
- def pop(self): ...
290
+ def path_resolve(self):
291
+ """ """
292
+ ...
293
+
294
+ def pop(self):
295
+ """ """
296
+ ...
297
+
171
298
  def prepend(self, draw_func):
172
299
  """
173
300
 
174
301
  :param draw_func:
175
- :type draw_func:
176
302
  """
177
303
  ...
178
304
 
179
- def property_overridable_library_set(self): ...
180
- def property_unset(self): ...
305
+ def property_overridable_library_set(self):
306
+ """ """
307
+ ...
308
+
309
+ def property_unset(self):
310
+ """ """
311
+ ...
312
+
181
313
  def remove(self, draw_func):
182
314
  """
183
315
 
184
316
  :param draw_func:
185
- :type draw_func:
186
317
  """
187
318
  ...
188
319
 
189
- def type_recast(self): ...
190
- def values(self): ...
320
+ def type_recast(self):
321
+ """ """
322
+ ...
323
+
324
+ def values(self):
325
+ """ """
326
+ ...
327
+
328
+ class NLA_MT_channel_context_menu(bpy_types._GenericUI):
329
+ """ """
191
330
 
192
- class NLA_MT_channel_context_menu(bpy_types.Menu, bpy_types._GenericUI):
193
331
  bl_label: typing.Any
332
+ """ """
333
+
194
334
  bl_rna: typing.Any
335
+ """ """
336
+
195
337
  id_data: typing.Any
338
+ """ """
196
339
 
197
340
  def append(self, draw_func):
198
341
  """
199
342
 
200
343
  :param draw_func:
201
- :type draw_func:
202
344
  """
203
345
  ...
204
346
 
205
- def as_pointer(self): ...
206
- def bl_rna_get_subclass(self): ...
207
- def bl_rna_get_subclass_py(self): ...
347
+ def as_pointer(self):
348
+ """ """
349
+ ...
350
+
351
+ def bl_rna_get_subclass(self):
352
+ """ """
353
+ ...
354
+
355
+ def bl_rna_get_subclass_py(self):
356
+ """ """
357
+ ...
358
+
208
359
  def draw(self, _context):
209
360
  """
210
361
 
211
- :param self:
212
- :type self:
213
362
  :param _context:
214
- :type _context:
215
363
  """
216
364
  ...
217
365
 
@@ -219,38 +367,81 @@ class NLA_MT_channel_context_menu(bpy_types.Menu, bpy_types._GenericUI):
219
367
  """
220
368
 
221
369
  :param context:
222
- :type context:
223
370
  :param layout:
224
- :type layout:
225
371
  """
226
372
  ...
227
373
 
228
374
  def draw_preset(self, _context):
229
375
  """
230
376
 
231
- :param self:
232
- :type self:
233
377
  :param _context:
234
- :type _context:
235
- """
236
- ...
237
-
238
- def driver_add(self): ...
239
- def driver_remove(self): ...
240
- def get(self): ...
241
- def id_properties_clear(self): ...
242
- def id_properties_ensure(self): ...
243
- def id_properties_ui(self): ...
244
- def is_extended(self): ...
245
- def is_property_hidden(self): ...
246
- def is_property_overridable_library(self): ...
247
- def is_property_readonly(self): ...
248
- def is_property_set(self): ...
249
- def items(self): ...
250
- def keyframe_delete(self): ...
251
- def keyframe_insert(self): ...
252
- def keys(self): ...
253
- def path_from_id(self): ...
378
+ """
379
+ ...
380
+
381
+ def driver_add(self):
382
+ """ """
383
+ ...
384
+
385
+ def driver_remove(self):
386
+ """ """
387
+ ...
388
+
389
+ def get(self):
390
+ """ """
391
+ ...
392
+
393
+ def id_properties_clear(self):
394
+ """ """
395
+ ...
396
+
397
+ def id_properties_ensure(self):
398
+ """ """
399
+ ...
400
+
401
+ def id_properties_ui(self):
402
+ """ """
403
+ ...
404
+
405
+ def is_extended(self):
406
+ """ """
407
+ ...
408
+
409
+ def is_property_hidden(self):
410
+ """ """
411
+ ...
412
+
413
+ def is_property_overridable_library(self):
414
+ """ """
415
+ ...
416
+
417
+ def is_property_readonly(self):
418
+ """ """
419
+ ...
420
+
421
+ def is_property_set(self):
422
+ """ """
423
+ ...
424
+
425
+ def items(self):
426
+ """ """
427
+ ...
428
+
429
+ def keyframe_delete(self):
430
+ """ """
431
+ ...
432
+
433
+ def keyframe_insert(self):
434
+ """ """
435
+ ...
436
+
437
+ def keys(self):
438
+ """ """
439
+ ...
440
+
441
+ def path_from_id(self):
442
+ """ """
443
+ ...
444
+
254
445
  def path_menu(
255
446
  self,
256
447
  searchpaths,
@@ -264,73 +455,90 @@ class NLA_MT_channel_context_menu(bpy_types.Menu, bpy_types._GenericUI):
264
455
  ):
265
456
  """
266
457
 
267
- :param self:
268
- :type self:
269
458
  :param searchpaths:
270
- :type searchpaths:
271
459
  :param operator:
272
- :type operator:
273
460
  :param props_default:
274
- :type props_default:
275
461
  :param prop_filepath:
276
- :type prop_filepath:
277
462
  :param filter_ext:
278
- :type filter_ext:
279
463
  :param filter_path:
280
- :type filter_path:
281
464
  :param display_name:
282
- :type display_name:
283
465
  :param add_operator:
284
- :type add_operator:
285
466
  """
286
467
  ...
287
468
 
288
- def path_resolve(self): ...
289
- def pop(self): ...
469
+ def path_resolve(self):
470
+ """ """
471
+ ...
472
+
473
+ def pop(self):
474
+ """ """
475
+ ...
476
+
290
477
  def prepend(self, draw_func):
291
478
  """
292
479
 
293
480
  :param draw_func:
294
- :type draw_func:
295
481
  """
296
482
  ...
297
483
 
298
- def property_overridable_library_set(self): ...
299
- def property_unset(self): ...
484
+ def property_overridable_library_set(self):
485
+ """ """
486
+ ...
487
+
488
+ def property_unset(self):
489
+ """ """
490
+ ...
491
+
300
492
  def remove(self, draw_func):
301
493
  """
302
494
 
303
495
  :param draw_func:
304
- :type draw_func:
305
496
  """
306
497
  ...
307
498
 
308
- def type_recast(self): ...
309
- def values(self): ...
499
+ def type_recast(self):
500
+ """ """
501
+ ...
502
+
503
+ def values(self):
504
+ """ """
505
+ ...
506
+
507
+ class NLA_MT_context_menu(bpy_types._GenericUI):
508
+ """ """
310
509
 
311
- class NLA_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
312
510
  bl_label: typing.Any
511
+ """ """
512
+
313
513
  bl_rna: typing.Any
514
+ """ """
515
+
314
516
  id_data: typing.Any
517
+ """ """
315
518
 
316
519
  def append(self, draw_func):
317
520
  """
318
521
 
319
522
  :param draw_func:
320
- :type draw_func:
321
523
  """
322
524
  ...
323
525
 
324
- def as_pointer(self): ...
325
- def bl_rna_get_subclass(self): ...
326
- def bl_rna_get_subclass_py(self): ...
526
+ def as_pointer(self):
527
+ """ """
528
+ ...
529
+
530
+ def bl_rna_get_subclass(self):
531
+ """ """
532
+ ...
533
+
534
+ def bl_rna_get_subclass_py(self):
535
+ """ """
536
+ ...
537
+
327
538
  def draw(self, context):
328
539
  """
329
540
 
330
- :param self:
331
- :type self:
332
541
  :param context:
333
- :type context:
334
542
  """
335
543
  ...
336
544
 
@@ -338,38 +546,81 @@ class NLA_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
338
546
  """
339
547
 
340
548
  :param context:
341
- :type context:
342
549
  :param layout:
343
- :type layout:
344
550
  """
345
551
  ...
346
552
 
347
553
  def draw_preset(self, _context):
348
554
  """
349
555
 
350
- :param self:
351
- :type self:
352
556
  :param _context:
353
- :type _context:
354
- """
355
- ...
356
-
357
- def driver_add(self): ...
358
- def driver_remove(self): ...
359
- def get(self): ...
360
- def id_properties_clear(self): ...
361
- def id_properties_ensure(self): ...
362
- def id_properties_ui(self): ...
363
- def is_extended(self): ...
364
- def is_property_hidden(self): ...
365
- def is_property_overridable_library(self): ...
366
- def is_property_readonly(self): ...
367
- def is_property_set(self): ...
368
- def items(self): ...
369
- def keyframe_delete(self): ...
370
- def keyframe_insert(self): ...
371
- def keys(self): ...
372
- def path_from_id(self): ...
557
+ """
558
+ ...
559
+
560
+ def driver_add(self):
561
+ """ """
562
+ ...
563
+
564
+ def driver_remove(self):
565
+ """ """
566
+ ...
567
+
568
+ def get(self):
569
+ """ """
570
+ ...
571
+
572
+ def id_properties_clear(self):
573
+ """ """
574
+ ...
575
+
576
+ def id_properties_ensure(self):
577
+ """ """
578
+ ...
579
+
580
+ def id_properties_ui(self):
581
+ """ """
582
+ ...
583
+
584
+ def is_extended(self):
585
+ """ """
586
+ ...
587
+
588
+ def is_property_hidden(self):
589
+ """ """
590
+ ...
591
+
592
+ def is_property_overridable_library(self):
593
+ """ """
594
+ ...
595
+
596
+ def is_property_readonly(self):
597
+ """ """
598
+ ...
599
+
600
+ def is_property_set(self):
601
+ """ """
602
+ ...
603
+
604
+ def items(self):
605
+ """ """
606
+ ...
607
+
608
+ def keyframe_delete(self):
609
+ """ """
610
+ ...
611
+
612
+ def keyframe_insert(self):
613
+ """ """
614
+ ...
615
+
616
+ def keys(self):
617
+ """ """
618
+ ...
619
+
620
+ def path_from_id(self):
621
+ """ """
622
+ ...
623
+
373
624
  def path_menu(
374
625
  self,
375
626
  searchpaths,
@@ -383,74 +634,93 @@ class NLA_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
383
634
  ):
384
635
  """
385
636
 
386
- :param self:
387
- :type self:
388
637
  :param searchpaths:
389
- :type searchpaths:
390
638
  :param operator:
391
- :type operator:
392
639
  :param props_default:
393
- :type props_default:
394
640
  :param prop_filepath:
395
- :type prop_filepath:
396
641
  :param filter_ext:
397
- :type filter_ext:
398
642
  :param filter_path:
399
- :type filter_path:
400
643
  :param display_name:
401
- :type display_name:
402
644
  :param add_operator:
403
- :type add_operator:
404
645
  """
405
646
  ...
406
647
 
407
- def path_resolve(self): ...
408
- def pop(self): ...
648
+ def path_resolve(self):
649
+ """ """
650
+ ...
651
+
652
+ def pop(self):
653
+ """ """
654
+ ...
655
+
409
656
  def prepend(self, draw_func):
410
657
  """
411
658
 
412
659
  :param draw_func:
413
- :type draw_func:
414
660
  """
415
661
  ...
416
662
 
417
- def property_overridable_library_set(self): ...
418
- def property_unset(self): ...
663
+ def property_overridable_library_set(self):
664
+ """ """
665
+ ...
666
+
667
+ def property_unset(self):
668
+ """ """
669
+ ...
670
+
419
671
  def remove(self, draw_func):
420
672
  """
421
673
 
422
674
  :param draw_func:
423
- :type draw_func:
424
675
  """
425
676
  ...
426
677
 
427
- def type_recast(self): ...
428
- def values(self): ...
678
+ def type_recast(self):
679
+ """ """
680
+ ...
681
+
682
+ def values(self):
683
+ """ """
684
+ ...
685
+
686
+ class NLA_MT_editor_menus(bpy_types._GenericUI):
687
+ """ """
429
688
 
430
- class NLA_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
431
689
  bl_idname: typing.Any
690
+ """ """
691
+
432
692
  bl_label: typing.Any
693
+ """ """
694
+
433
695
  bl_rna: typing.Any
696
+ """ """
697
+
434
698
  id_data: typing.Any
699
+ """ """
435
700
 
436
701
  def append(self, draw_func):
437
702
  """
438
703
 
439
704
  :param draw_func:
440
- :type draw_func:
441
705
  """
442
706
  ...
443
707
 
444
- def as_pointer(self): ...
445
- def bl_rna_get_subclass(self): ...
446
- def bl_rna_get_subclass_py(self): ...
708
+ def as_pointer(self):
709
+ """ """
710
+ ...
711
+
712
+ def bl_rna_get_subclass(self):
713
+ """ """
714
+ ...
715
+
716
+ def bl_rna_get_subclass_py(self):
717
+ """ """
718
+ ...
719
+
447
720
  def draw(self, context):
448
721
  """
449
722
 
450
- :param self:
451
- :type self:
452
723
  :param context:
453
- :type context:
454
724
  """
455
725
  ...
456
726
 
@@ -458,157 +728,81 @@ class NLA_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
458
728
  """
459
729
 
460
730
  :param context:
461
- :type context:
462
731
  :param layout:
463
- :type layout:
464
732
  """
465
733
  ...
466
734
 
467
735
  def draw_preset(self, _context):
468
736
  """
469
737
 
470
- :param self:
471
- :type self:
472
738
  :param _context:
473
- :type _context:
474
- """
475
- ...
476
-
477
- def driver_add(self): ...
478
- def driver_remove(self): ...
479
- def get(self): ...
480
- def id_properties_clear(self): ...
481
- def id_properties_ensure(self): ...
482
- def id_properties_ui(self): ...
483
- def is_extended(self): ...
484
- def is_property_hidden(self): ...
485
- def is_property_overridable_library(self): ...
486
- def is_property_readonly(self): ...
487
- def is_property_set(self): ...
488
- def items(self): ...
489
- def keyframe_delete(self): ...
490
- def keyframe_insert(self): ...
491
- def keys(self): ...
492
- def path_from_id(self): ...
493
- def path_menu(
494
- self,
495
- searchpaths,
496
- operator,
497
- props_default,
498
- prop_filepath,
499
- filter_ext,
500
- filter_path,
501
- display_name,
502
- add_operator,
503
- ):
504
739
  """
740
+ ...
505
741
 
506
- :param self:
507
- :type self:
508
- :param searchpaths:
509
- :type searchpaths:
510
- :param operator:
511
- :type operator:
512
- :param props_default:
513
- :type props_default:
514
- :param prop_filepath:
515
- :type prop_filepath:
516
- :param filter_ext:
517
- :type filter_ext:
518
- :param filter_path:
519
- :type filter_path:
520
- :param display_name:
521
- :type display_name:
522
- :param add_operator:
523
- :type add_operator:
524
- """
742
+ def driver_add(self):
743
+ """ """
525
744
  ...
526
745
 
527
- def path_resolve(self): ...
528
- def pop(self): ...
529
- def prepend(self, draw_func):
530
- """
746
+ def driver_remove(self):
747
+ """ """
748
+ ...
531
749
 
532
- :param draw_func:
533
- :type draw_func:
534
- """
750
+ def get(self):
751
+ """ """
535
752
  ...
536
753
 
537
- def property_overridable_library_set(self): ...
538
- def property_unset(self): ...
539
- def remove(self, draw_func):
540
- """
754
+ def id_properties_clear(self):
755
+ """ """
756
+ ...
541
757
 
542
- :param draw_func:
543
- :type draw_func:
544
- """
758
+ def id_properties_ensure(self):
759
+ """ """
545
760
  ...
546
761
 
547
- def type_recast(self): ...
548
- def values(self): ...
762
+ def id_properties_ui(self):
763
+ """ """
764
+ ...
549
765
 
550
- class NLA_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
551
- bl_label: typing.Any
552
- bl_rna: typing.Any
553
- id_data: typing.Any
766
+ def is_extended(self):
767
+ """ """
768
+ ...
554
769
 
555
- def append(self, draw_func):
556
- """
770
+ def is_property_hidden(self):
771
+ """ """
772
+ ...
557
773
 
558
- :param draw_func:
559
- :type draw_func:
560
- """
774
+ def is_property_overridable_library(self):
775
+ """ """
561
776
  ...
562
777
 
563
- def as_pointer(self): ...
564
- def bl_rna_get_subclass(self): ...
565
- def bl_rna_get_subclass_py(self): ...
566
- def draw(self, context):
567
- """
778
+ def is_property_readonly(self):
779
+ """ """
780
+ ...
568
781
 
569
- :param self:
570
- :type self:
571
- :param context:
572
- :type context:
573
- """
782
+ def is_property_set(self):
783
+ """ """
574
784
  ...
575
785
 
576
- def draw_collapsible(self, context, layout):
577
- """
786
+ def items(self):
787
+ """ """
788
+ ...
578
789
 
579
- :param context:
580
- :type context:
581
- :param layout:
582
- :type layout:
583
- """
790
+ def keyframe_delete(self):
791
+ """ """
584
792
  ...
585
793
 
586
- def draw_preset(self, _context):
587
- """
794
+ def keyframe_insert(self):
795
+ """ """
796
+ ...
797
+
798
+ def keys(self):
799
+ """ """
800
+ ...
801
+
802
+ def path_from_id(self):
803
+ """ """
804
+ ...
588
805
 
589
- :param self:
590
- :type self:
591
- :param _context:
592
- :type _context:
593
- """
594
- ...
595
-
596
- def driver_add(self): ...
597
- def driver_remove(self): ...
598
- def get(self): ...
599
- def id_properties_clear(self): ...
600
- def id_properties_ensure(self): ...
601
- def id_properties_ui(self): ...
602
- def is_extended(self): ...
603
- def is_property_hidden(self): ...
604
- def is_property_overridable_library(self): ...
605
- def is_property_readonly(self): ...
606
- def is_property_set(self): ...
607
- def items(self): ...
608
- def keyframe_delete(self): ...
609
- def keyframe_insert(self): ...
610
- def keys(self): ...
611
- def path_from_id(self): ...
612
806
  def path_menu(
613
807
  self,
614
808
  searchpaths,
@@ -622,73 +816,90 @@ class NLA_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
622
816
  ):
623
817
  """
624
818
 
625
- :param self:
626
- :type self:
627
819
  :param searchpaths:
628
- :type searchpaths:
629
820
  :param operator:
630
- :type operator:
631
821
  :param props_default:
632
- :type props_default:
633
822
  :param prop_filepath:
634
- :type prop_filepath:
635
823
  :param filter_ext:
636
- :type filter_ext:
637
824
  :param filter_path:
638
- :type filter_path:
639
825
  :param display_name:
640
- :type display_name:
641
826
  :param add_operator:
642
- :type add_operator:
643
827
  """
644
828
  ...
645
829
 
646
- def path_resolve(self): ...
647
- def pop(self): ...
830
+ def path_resolve(self):
831
+ """ """
832
+ ...
833
+
834
+ def pop(self):
835
+ """ """
836
+ ...
837
+
648
838
  def prepend(self, draw_func):
649
839
  """
650
840
 
651
841
  :param draw_func:
652
- :type draw_func:
653
842
  """
654
843
  ...
655
844
 
656
- def property_overridable_library_set(self): ...
657
- def property_unset(self): ...
845
+ def property_overridable_library_set(self):
846
+ """ """
847
+ ...
848
+
849
+ def property_unset(self):
850
+ """ """
851
+ ...
852
+
658
853
  def remove(self, draw_func):
659
854
  """
660
855
 
661
856
  :param draw_func:
662
- :type draw_func:
663
857
  """
664
858
  ...
665
859
 
666
- def type_recast(self): ...
667
- def values(self): ...
860
+ def type_recast(self):
861
+ """ """
862
+ ...
863
+
864
+ def values(self):
865
+ """ """
866
+ ...
867
+
868
+ class NLA_MT_marker(bpy_types._GenericUI):
869
+ """ """
668
870
 
669
- class NLA_MT_marker_select(bpy_types.Menu, bpy_types._GenericUI):
670
871
  bl_label: typing.Any
872
+ """ """
873
+
671
874
  bl_rna: typing.Any
875
+ """ """
876
+
672
877
  id_data: typing.Any
878
+ """ """
673
879
 
674
880
  def append(self, draw_func):
675
881
  """
676
882
 
677
883
  :param draw_func:
678
- :type draw_func:
679
884
  """
680
885
  ...
681
886
 
682
- def as_pointer(self): ...
683
- def bl_rna_get_subclass(self): ...
684
- def bl_rna_get_subclass_py(self): ...
685
- def draw(self, _context):
887
+ def as_pointer(self):
888
+ """ """
889
+ ...
890
+
891
+ def bl_rna_get_subclass(self):
892
+ """ """
893
+ ...
894
+
895
+ def bl_rna_get_subclass_py(self):
896
+ """ """
897
+ ...
898
+
899
+ def draw(self, context):
686
900
  """
687
901
 
688
- :param self:
689
- :type self:
690
- :param _context:
691
- :type _context:
902
+ :param context:
692
903
  """
693
904
  ...
694
905
 
@@ -696,38 +907,81 @@ class NLA_MT_marker_select(bpy_types.Menu, bpy_types._GenericUI):
696
907
  """
697
908
 
698
909
  :param context:
699
- :type context:
700
910
  :param layout:
701
- :type layout:
702
911
  """
703
912
  ...
704
913
 
705
914
  def draw_preset(self, _context):
706
915
  """
707
916
 
708
- :param self:
709
- :type self:
710
917
  :param _context:
711
- :type _context:
712
- """
713
- ...
714
-
715
- def driver_add(self): ...
716
- def driver_remove(self): ...
717
- def get(self): ...
718
- def id_properties_clear(self): ...
719
- def id_properties_ensure(self): ...
720
- def id_properties_ui(self): ...
721
- def is_extended(self): ...
722
- def is_property_hidden(self): ...
723
- def is_property_overridable_library(self): ...
724
- def is_property_readonly(self): ...
725
- def is_property_set(self): ...
726
- def items(self): ...
727
- def keyframe_delete(self): ...
728
- def keyframe_insert(self): ...
729
- def keys(self): ...
730
- def path_from_id(self): ...
918
+ """
919
+ ...
920
+
921
+ def driver_add(self):
922
+ """ """
923
+ ...
924
+
925
+ def driver_remove(self):
926
+ """ """
927
+ ...
928
+
929
+ def get(self):
930
+ """ """
931
+ ...
932
+
933
+ def id_properties_clear(self):
934
+ """ """
935
+ ...
936
+
937
+ def id_properties_ensure(self):
938
+ """ """
939
+ ...
940
+
941
+ def id_properties_ui(self):
942
+ """ """
943
+ ...
944
+
945
+ def is_extended(self):
946
+ """ """
947
+ ...
948
+
949
+ def is_property_hidden(self):
950
+ """ """
951
+ ...
952
+
953
+ def is_property_overridable_library(self):
954
+ """ """
955
+ ...
956
+
957
+ def is_property_readonly(self):
958
+ """ """
959
+ ...
960
+
961
+ def is_property_set(self):
962
+ """ """
963
+ ...
964
+
965
+ def items(self):
966
+ """ """
967
+ ...
968
+
969
+ def keyframe_delete(self):
970
+ """ """
971
+ ...
972
+
973
+ def keyframe_insert(self):
974
+ """ """
975
+ ...
976
+
977
+ def keys(self):
978
+ """ """
979
+ ...
980
+
981
+ def path_from_id(self):
982
+ """ """
983
+ ...
984
+
731
985
  def path_menu(
732
986
  self,
733
987
  searchpaths,
@@ -741,73 +995,90 @@ class NLA_MT_marker_select(bpy_types.Menu, bpy_types._GenericUI):
741
995
  ):
742
996
  """
743
997
 
744
- :param self:
745
- :type self:
746
998
  :param searchpaths:
747
- :type searchpaths:
748
999
  :param operator:
749
- :type operator:
750
1000
  :param props_default:
751
- :type props_default:
752
1001
  :param prop_filepath:
753
- :type prop_filepath:
754
1002
  :param filter_ext:
755
- :type filter_ext:
756
1003
  :param filter_path:
757
- :type filter_path:
758
1004
  :param display_name:
759
- :type display_name:
760
1005
  :param add_operator:
761
- :type add_operator:
762
1006
  """
763
1007
  ...
764
1008
 
765
- def path_resolve(self): ...
766
- def pop(self): ...
1009
+ def path_resolve(self):
1010
+ """ """
1011
+ ...
1012
+
1013
+ def pop(self):
1014
+ """ """
1015
+ ...
1016
+
767
1017
  def prepend(self, draw_func):
768
1018
  """
769
1019
 
770
1020
  :param draw_func:
771
- :type draw_func:
772
1021
  """
773
1022
  ...
774
1023
 
775
- def property_overridable_library_set(self): ...
776
- def property_unset(self): ...
1024
+ def property_overridable_library_set(self):
1025
+ """ """
1026
+ ...
1027
+
1028
+ def property_unset(self):
1029
+ """ """
1030
+ ...
1031
+
777
1032
  def remove(self, draw_func):
778
1033
  """
779
1034
 
780
1035
  :param draw_func:
781
- :type draw_func:
782
1036
  """
783
1037
  ...
784
1038
 
785
- def type_recast(self): ...
786
- def values(self): ...
1039
+ def type_recast(self):
1040
+ """ """
1041
+ ...
1042
+
1043
+ def values(self):
1044
+ """ """
1045
+ ...
1046
+
1047
+ class NLA_MT_marker_select(bpy_types._GenericUI):
1048
+ """ """
787
1049
 
788
- class NLA_MT_select(bpy_types.Menu, bpy_types._GenericUI):
789
1050
  bl_label: typing.Any
1051
+ """ """
1052
+
790
1053
  bl_rna: typing.Any
1054
+ """ """
1055
+
791
1056
  id_data: typing.Any
1057
+ """ """
792
1058
 
793
1059
  def append(self, draw_func):
794
1060
  """
795
1061
 
796
1062
  :param draw_func:
797
- :type draw_func:
798
1063
  """
799
1064
  ...
800
1065
 
801
- def as_pointer(self): ...
802
- def bl_rna_get_subclass(self): ...
803
- def bl_rna_get_subclass_py(self): ...
1066
+ def as_pointer(self):
1067
+ """ """
1068
+ ...
1069
+
1070
+ def bl_rna_get_subclass(self):
1071
+ """ """
1072
+ ...
1073
+
1074
+ def bl_rna_get_subclass_py(self):
1075
+ """ """
1076
+ ...
1077
+
804
1078
  def draw(self, _context):
805
1079
  """
806
1080
 
807
- :param self:
808
- :type self:
809
1081
  :param _context:
810
- :type _context:
811
1082
  """
812
1083
  ...
813
1084
 
@@ -815,38 +1086,81 @@ class NLA_MT_select(bpy_types.Menu, bpy_types._GenericUI):
815
1086
  """
816
1087
 
817
1088
  :param context:
818
- :type context:
819
1089
  :param layout:
820
- :type layout:
821
1090
  """
822
1091
  ...
823
1092
 
824
1093
  def draw_preset(self, _context):
825
1094
  """
826
1095
 
827
- :param self:
828
- :type self:
829
1096
  :param _context:
830
- :type _context:
831
- """
832
- ...
833
-
834
- def driver_add(self): ...
835
- def driver_remove(self): ...
836
- def get(self): ...
837
- def id_properties_clear(self): ...
838
- def id_properties_ensure(self): ...
839
- def id_properties_ui(self): ...
840
- def is_extended(self): ...
841
- def is_property_hidden(self): ...
842
- def is_property_overridable_library(self): ...
843
- def is_property_readonly(self): ...
844
- def is_property_set(self): ...
845
- def items(self): ...
846
- def keyframe_delete(self): ...
847
- def keyframe_insert(self): ...
848
- def keys(self): ...
849
- def path_from_id(self): ...
1097
+ """
1098
+ ...
1099
+
1100
+ def driver_add(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def driver_remove(self):
1105
+ """ """
1106
+ ...
1107
+
1108
+ def get(self):
1109
+ """ """
1110
+ ...
1111
+
1112
+ def id_properties_clear(self):
1113
+ """ """
1114
+ ...
1115
+
1116
+ def id_properties_ensure(self):
1117
+ """ """
1118
+ ...
1119
+
1120
+ def id_properties_ui(self):
1121
+ """ """
1122
+ ...
1123
+
1124
+ def is_extended(self):
1125
+ """ """
1126
+ ...
1127
+
1128
+ def is_property_hidden(self):
1129
+ """ """
1130
+ ...
1131
+
1132
+ def is_property_overridable_library(self):
1133
+ """ """
1134
+ ...
1135
+
1136
+ def is_property_readonly(self):
1137
+ """ """
1138
+ ...
1139
+
1140
+ def is_property_set(self):
1141
+ """ """
1142
+ ...
1143
+
1144
+ def items(self):
1145
+ """ """
1146
+ ...
1147
+
1148
+ def keyframe_delete(self):
1149
+ """ """
1150
+ ...
1151
+
1152
+ def keyframe_insert(self):
1153
+ """ """
1154
+ ...
1155
+
1156
+ def keys(self):
1157
+ """ """
1158
+ ...
1159
+
1160
+ def path_from_id(self):
1161
+ """ """
1162
+ ...
1163
+
850
1164
  def path_menu(
851
1165
  self,
852
1166
  searchpaths,
@@ -860,73 +1174,90 @@ class NLA_MT_select(bpy_types.Menu, bpy_types._GenericUI):
860
1174
  ):
861
1175
  """
862
1176
 
863
- :param self:
864
- :type self:
865
1177
  :param searchpaths:
866
- :type searchpaths:
867
1178
  :param operator:
868
- :type operator:
869
1179
  :param props_default:
870
- :type props_default:
871
1180
  :param prop_filepath:
872
- :type prop_filepath:
873
1181
  :param filter_ext:
874
- :type filter_ext:
875
1182
  :param filter_path:
876
- :type filter_path:
877
1183
  :param display_name:
878
- :type display_name:
879
1184
  :param add_operator:
880
- :type add_operator:
881
1185
  """
882
1186
  ...
883
1187
 
884
- def path_resolve(self): ...
885
- def pop(self): ...
1188
+ def path_resolve(self):
1189
+ """ """
1190
+ ...
1191
+
1192
+ def pop(self):
1193
+ """ """
1194
+ ...
1195
+
886
1196
  def prepend(self, draw_func):
887
1197
  """
888
1198
 
889
1199
  :param draw_func:
890
- :type draw_func:
891
1200
  """
892
1201
  ...
893
1202
 
894
- def property_overridable_library_set(self): ...
895
- def property_unset(self): ...
1203
+ def property_overridable_library_set(self):
1204
+ """ """
1205
+ ...
1206
+
1207
+ def property_unset(self):
1208
+ """ """
1209
+ ...
1210
+
896
1211
  def remove(self, draw_func):
897
1212
  """
898
1213
 
899
1214
  :param draw_func:
900
- :type draw_func:
901
1215
  """
902
1216
  ...
903
1217
 
904
- def type_recast(self): ...
905
- def values(self): ...
1218
+ def type_recast(self):
1219
+ """ """
1220
+ ...
1221
+
1222
+ def values(self):
1223
+ """ """
1224
+ ...
1225
+
1226
+ class NLA_MT_select(bpy_types._GenericUI):
1227
+ """ """
906
1228
 
907
- class NLA_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
908
1229
  bl_label: typing.Any
1230
+ """ """
1231
+
909
1232
  bl_rna: typing.Any
1233
+ """ """
1234
+
910
1235
  id_data: typing.Any
1236
+ """ """
911
1237
 
912
1238
  def append(self, draw_func):
913
1239
  """
914
1240
 
915
1241
  :param draw_func:
916
- :type draw_func:
917
1242
  """
918
1243
  ...
919
1244
 
920
- def as_pointer(self): ...
921
- def bl_rna_get_subclass(self): ...
922
- def bl_rna_get_subclass_py(self): ...
1245
+ def as_pointer(self):
1246
+ """ """
1247
+ ...
1248
+
1249
+ def bl_rna_get_subclass(self):
1250
+ """ """
1251
+ ...
1252
+
1253
+ def bl_rna_get_subclass_py(self):
1254
+ """ """
1255
+ ...
1256
+
923
1257
  def draw(self, _context):
924
1258
  """
925
1259
 
926
- :param self:
927
- :type self:
928
1260
  :param _context:
929
- :type _context:
930
1261
  """
931
1262
  ...
932
1263
 
@@ -934,157 +1265,81 @@ class NLA_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
934
1265
  """
935
1266
 
936
1267
  :param context:
937
- :type context:
938
1268
  :param layout:
939
- :type layout:
940
1269
  """
941
1270
  ...
942
1271
 
943
1272
  def draw_preset(self, _context):
944
1273
  """
945
1274
 
946
- :param self:
947
- :type self:
948
1275
  :param _context:
949
- :type _context:
950
- """
951
- ...
952
-
953
- def driver_add(self): ...
954
- def driver_remove(self): ...
955
- def get(self): ...
956
- def id_properties_clear(self): ...
957
- def id_properties_ensure(self): ...
958
- def id_properties_ui(self): ...
959
- def is_extended(self): ...
960
- def is_property_hidden(self): ...
961
- def is_property_overridable_library(self): ...
962
- def is_property_readonly(self): ...
963
- def is_property_set(self): ...
964
- def items(self): ...
965
- def keyframe_delete(self): ...
966
- def keyframe_insert(self): ...
967
- def keys(self): ...
968
- def path_from_id(self): ...
969
- def path_menu(
970
- self,
971
- searchpaths,
972
- operator,
973
- props_default,
974
- prop_filepath,
975
- filter_ext,
976
- filter_path,
977
- display_name,
978
- add_operator,
979
- ):
980
1276
  """
1277
+ ...
981
1278
 
982
- :param self:
983
- :type self:
984
- :param searchpaths:
985
- :type searchpaths:
986
- :param operator:
987
- :type operator:
988
- :param props_default:
989
- :type props_default:
990
- :param prop_filepath:
991
- :type prop_filepath:
992
- :param filter_ext:
993
- :type filter_ext:
994
- :param filter_path:
995
- :type filter_path:
996
- :param display_name:
997
- :type display_name:
998
- :param add_operator:
999
- :type add_operator:
1000
- """
1279
+ def driver_add(self):
1280
+ """ """
1001
1281
  ...
1002
1282
 
1003
- def path_resolve(self): ...
1004
- def pop(self): ...
1005
- def prepend(self, draw_func):
1006
- """
1283
+ def driver_remove(self):
1284
+ """ """
1285
+ ...
1007
1286
 
1008
- :param draw_func:
1009
- :type draw_func:
1010
- """
1287
+ def get(self):
1288
+ """ """
1011
1289
  ...
1012
1290
 
1013
- def property_overridable_library_set(self): ...
1014
- def property_unset(self): ...
1015
- def remove(self, draw_func):
1016
- """
1291
+ def id_properties_clear(self):
1292
+ """ """
1293
+ ...
1017
1294
 
1018
- :param draw_func:
1019
- :type draw_func:
1020
- """
1295
+ def id_properties_ensure(self):
1296
+ """ """
1021
1297
  ...
1022
1298
 
1023
- def type_recast(self): ...
1024
- def values(self): ...
1299
+ def id_properties_ui(self):
1300
+ """ """
1301
+ ...
1025
1302
 
1026
- class NLA_MT_strips(bpy_types.Menu, bpy_types._GenericUI):
1027
- bl_label: typing.Any
1028
- bl_rna: typing.Any
1029
- id_data: typing.Any
1303
+ def is_extended(self):
1304
+ """ """
1305
+ ...
1030
1306
 
1031
- def append(self, draw_func):
1032
- """
1307
+ def is_property_hidden(self):
1308
+ """ """
1309
+ ...
1033
1310
 
1034
- :param draw_func:
1035
- :type draw_func:
1036
- """
1311
+ def is_property_overridable_library(self):
1312
+ """ """
1037
1313
  ...
1038
1314
 
1039
- def as_pointer(self): ...
1040
- def bl_rna_get_subclass(self): ...
1041
- def bl_rna_get_subclass_py(self): ...
1042
- def draw(self, context):
1043
- """
1315
+ def is_property_readonly(self):
1316
+ """ """
1317
+ ...
1044
1318
 
1045
- :param self:
1046
- :type self:
1047
- :param context:
1048
- :type context:
1049
- """
1319
+ def is_property_set(self):
1320
+ """ """
1050
1321
  ...
1051
1322
 
1052
- def draw_collapsible(self, context, layout):
1053
- """
1323
+ def items(self):
1324
+ """ """
1325
+ ...
1054
1326
 
1055
- :param context:
1056
- :type context:
1057
- :param layout:
1058
- :type layout:
1059
- """
1327
+ def keyframe_delete(self):
1328
+ """ """
1060
1329
  ...
1061
1330
 
1062
- def draw_preset(self, _context):
1063
- """
1331
+ def keyframe_insert(self):
1332
+ """ """
1333
+ ...
1334
+
1335
+ def keys(self):
1336
+ """ """
1337
+ ...
1338
+
1339
+ def path_from_id(self):
1340
+ """ """
1341
+ ...
1064
1342
 
1065
- :param self:
1066
- :type self:
1067
- :param _context:
1068
- :type _context:
1069
- """
1070
- ...
1071
-
1072
- def driver_add(self): ...
1073
- def driver_remove(self): ...
1074
- def get(self): ...
1075
- def id_properties_clear(self): ...
1076
- def id_properties_ensure(self): ...
1077
- def id_properties_ui(self): ...
1078
- def is_extended(self): ...
1079
- def is_property_hidden(self): ...
1080
- def is_property_overridable_library(self): ...
1081
- def is_property_readonly(self): ...
1082
- def is_property_set(self): ...
1083
- def items(self): ...
1084
- def keyframe_delete(self): ...
1085
- def keyframe_insert(self): ...
1086
- def keys(self): ...
1087
- def path_from_id(self): ...
1088
1343
  def path_menu(
1089
1344
  self,
1090
1345
  searchpaths,
@@ -1098,73 +1353,90 @@ class NLA_MT_strips(bpy_types.Menu, bpy_types._GenericUI):
1098
1353
  ):
1099
1354
  """
1100
1355
 
1101
- :param self:
1102
- :type self:
1103
1356
  :param searchpaths:
1104
- :type searchpaths:
1105
1357
  :param operator:
1106
- :type operator:
1107
1358
  :param props_default:
1108
- :type props_default:
1109
1359
  :param prop_filepath:
1110
- :type prop_filepath:
1111
1360
  :param filter_ext:
1112
- :type filter_ext:
1113
1361
  :param filter_path:
1114
- :type filter_path:
1115
1362
  :param display_name:
1116
- :type display_name:
1117
1363
  :param add_operator:
1118
- :type add_operator:
1119
1364
  """
1120
1365
  ...
1121
1366
 
1122
- def path_resolve(self): ...
1123
- def pop(self): ...
1367
+ def path_resolve(self):
1368
+ """ """
1369
+ ...
1370
+
1371
+ def pop(self):
1372
+ """ """
1373
+ ...
1374
+
1124
1375
  def prepend(self, draw_func):
1125
1376
  """
1126
1377
 
1127
1378
  :param draw_func:
1128
- :type draw_func:
1129
1379
  """
1130
1380
  ...
1131
1381
 
1132
- def property_overridable_library_set(self): ...
1133
- def property_unset(self): ...
1382
+ def property_overridable_library_set(self):
1383
+ """ """
1384
+ ...
1385
+
1386
+ def property_unset(self):
1387
+ """ """
1388
+ ...
1389
+
1134
1390
  def remove(self, draw_func):
1135
1391
  """
1136
1392
 
1137
1393
  :param draw_func:
1138
- :type draw_func:
1139
1394
  """
1140
1395
  ...
1141
1396
 
1142
- def type_recast(self): ...
1143
- def values(self): ...
1397
+ def type_recast(self):
1398
+ """ """
1399
+ ...
1400
+
1401
+ def values(self):
1402
+ """ """
1403
+ ...
1404
+
1405
+ class NLA_MT_snap_pie(bpy_types._GenericUI):
1406
+ """ """
1144
1407
 
1145
- class NLA_MT_strips_transform(bpy_types.Menu, bpy_types._GenericUI):
1146
1408
  bl_label: typing.Any
1409
+ """ """
1410
+
1147
1411
  bl_rna: typing.Any
1412
+ """ """
1413
+
1148
1414
  id_data: typing.Any
1415
+ """ """
1149
1416
 
1150
1417
  def append(self, draw_func):
1151
1418
  """
1152
1419
 
1153
1420
  :param draw_func:
1154
- :type draw_func:
1155
1421
  """
1156
1422
  ...
1157
1423
 
1158
- def as_pointer(self): ...
1159
- def bl_rna_get_subclass(self): ...
1160
- def bl_rna_get_subclass_py(self): ...
1424
+ def as_pointer(self):
1425
+ """ """
1426
+ ...
1427
+
1428
+ def bl_rna_get_subclass(self):
1429
+ """ """
1430
+ ...
1431
+
1432
+ def bl_rna_get_subclass_py(self):
1433
+ """ """
1434
+ ...
1435
+
1161
1436
  def draw(self, _context):
1162
1437
  """
1163
1438
 
1164
- :param self:
1165
- :type self:
1166
1439
  :param _context:
1167
- :type _context:
1168
1440
  """
1169
1441
  ...
1170
1442
 
@@ -1172,119 +1444,178 @@ class NLA_MT_strips_transform(bpy_types.Menu, bpy_types._GenericUI):
1172
1444
  """
1173
1445
 
1174
1446
  :param context:
1175
- :type context:
1176
1447
  :param layout:
1177
- :type layout:
1178
1448
  """
1179
1449
  ...
1180
1450
 
1181
1451
  def draw_preset(self, _context):
1182
1452
  """
1183
1453
 
1184
- :param self:
1185
- :type self:
1186
1454
  :param _context:
1187
- :type _context:
1188
- """
1189
- ...
1190
-
1191
- def driver_add(self): ...
1192
- def driver_remove(self): ...
1193
- def get(self): ...
1194
- def id_properties_clear(self): ...
1195
- def id_properties_ensure(self): ...
1196
- def id_properties_ui(self): ...
1197
- def is_extended(self): ...
1198
- def is_property_hidden(self): ...
1199
- def is_property_overridable_library(self): ...
1200
- def is_property_readonly(self): ...
1201
- def is_property_set(self): ...
1202
- def items(self): ...
1203
- def keyframe_delete(self): ...
1204
- def keyframe_insert(self): ...
1205
- def keys(self): ...
1206
- def path_from_id(self): ...
1207
- def path_menu(
1208
- self,
1209
- searchpaths,
1210
- operator,
1211
- props_default,
1212
- prop_filepath,
1213
- filter_ext,
1455
+ """
1456
+ ...
1457
+
1458
+ def driver_add(self):
1459
+ """ """
1460
+ ...
1461
+
1462
+ def driver_remove(self):
1463
+ """ """
1464
+ ...
1465
+
1466
+ def get(self):
1467
+ """ """
1468
+ ...
1469
+
1470
+ def id_properties_clear(self):
1471
+ """ """
1472
+ ...
1473
+
1474
+ def id_properties_ensure(self):
1475
+ """ """
1476
+ ...
1477
+
1478
+ def id_properties_ui(self):
1479
+ """ """
1480
+ ...
1481
+
1482
+ def is_extended(self):
1483
+ """ """
1484
+ ...
1485
+
1486
+ def is_property_hidden(self):
1487
+ """ """
1488
+ ...
1489
+
1490
+ def is_property_overridable_library(self):
1491
+ """ """
1492
+ ...
1493
+
1494
+ def is_property_readonly(self):
1495
+ """ """
1496
+ ...
1497
+
1498
+ def is_property_set(self):
1499
+ """ """
1500
+ ...
1501
+
1502
+ def items(self):
1503
+ """ """
1504
+ ...
1505
+
1506
+ def keyframe_delete(self):
1507
+ """ """
1508
+ ...
1509
+
1510
+ def keyframe_insert(self):
1511
+ """ """
1512
+ ...
1513
+
1514
+ def keys(self):
1515
+ """ """
1516
+ ...
1517
+
1518
+ def path_from_id(self):
1519
+ """ """
1520
+ ...
1521
+
1522
+ def path_menu(
1523
+ self,
1524
+ searchpaths,
1525
+ operator,
1526
+ props_default,
1527
+ prop_filepath,
1528
+ filter_ext,
1214
1529
  filter_path,
1215
1530
  display_name,
1216
1531
  add_operator,
1217
1532
  ):
1218
1533
  """
1219
1534
 
1220
- :param self:
1221
- :type self:
1222
1535
  :param searchpaths:
1223
- :type searchpaths:
1224
1536
  :param operator:
1225
- :type operator:
1226
1537
  :param props_default:
1227
- :type props_default:
1228
1538
  :param prop_filepath:
1229
- :type prop_filepath:
1230
1539
  :param filter_ext:
1231
- :type filter_ext:
1232
1540
  :param filter_path:
1233
- :type filter_path:
1234
1541
  :param display_name:
1235
- :type display_name:
1236
1542
  :param add_operator:
1237
- :type add_operator:
1238
1543
  """
1239
1544
  ...
1240
1545
 
1241
- def path_resolve(self): ...
1242
- def pop(self): ...
1546
+ def path_resolve(self):
1547
+ """ """
1548
+ ...
1549
+
1550
+ def pop(self):
1551
+ """ """
1552
+ ...
1553
+
1243
1554
  def prepend(self, draw_func):
1244
1555
  """
1245
1556
 
1246
1557
  :param draw_func:
1247
- :type draw_func:
1248
1558
  """
1249
1559
  ...
1250
1560
 
1251
- def property_overridable_library_set(self): ...
1252
- def property_unset(self): ...
1561
+ def property_overridable_library_set(self):
1562
+ """ """
1563
+ ...
1564
+
1565
+ def property_unset(self):
1566
+ """ """
1567
+ ...
1568
+
1253
1569
  def remove(self, draw_func):
1254
1570
  """
1255
1571
 
1256
1572
  :param draw_func:
1257
- :type draw_func:
1258
1573
  """
1259
1574
  ...
1260
1575
 
1261
- def type_recast(self): ...
1262
- def values(self): ...
1576
+ def type_recast(self):
1577
+ """ """
1578
+ ...
1579
+
1580
+ def values(self):
1581
+ """ """
1582
+ ...
1583
+
1584
+ class NLA_MT_strips(bpy_types._GenericUI):
1585
+ """ """
1263
1586
 
1264
- class NLA_MT_tracks(bpy_types.Menu, bpy_types._GenericUI):
1265
1587
  bl_label: typing.Any
1588
+ """ """
1589
+
1266
1590
  bl_rna: typing.Any
1267
- bl_translation_context: typing.Any
1591
+ """ """
1592
+
1268
1593
  id_data: typing.Any
1594
+ """ """
1269
1595
 
1270
1596
  def append(self, draw_func):
1271
1597
  """
1272
1598
 
1273
1599
  :param draw_func:
1274
- :type draw_func:
1275
1600
  """
1276
1601
  ...
1277
1602
 
1278
- def as_pointer(self): ...
1279
- def bl_rna_get_subclass(self): ...
1280
- def bl_rna_get_subclass_py(self): ...
1281
- def draw(self, _context):
1603
+ def as_pointer(self):
1604
+ """ """
1605
+ ...
1606
+
1607
+ def bl_rna_get_subclass(self):
1608
+ """ """
1609
+ ...
1610
+
1611
+ def bl_rna_get_subclass_py(self):
1612
+ """ """
1613
+ ...
1614
+
1615
+ def draw(self, context):
1282
1616
  """
1283
1617
 
1284
- :param self:
1285
- :type self:
1286
- :param _context:
1287
- :type _context:
1618
+ :param context:
1288
1619
  """
1289
1620
  ...
1290
1621
 
@@ -1292,38 +1623,81 @@ class NLA_MT_tracks(bpy_types.Menu, bpy_types._GenericUI):
1292
1623
  """
1293
1624
 
1294
1625
  :param context:
1295
- :type context:
1296
1626
  :param layout:
1297
- :type layout:
1298
1627
  """
1299
1628
  ...
1300
1629
 
1301
1630
  def draw_preset(self, _context):
1302
1631
  """
1303
1632
 
1304
- :param self:
1305
- :type self:
1306
1633
  :param _context:
1307
- :type _context:
1308
- """
1309
- ...
1310
-
1311
- def driver_add(self): ...
1312
- def driver_remove(self): ...
1313
- def get(self): ...
1314
- def id_properties_clear(self): ...
1315
- def id_properties_ensure(self): ...
1316
- def id_properties_ui(self): ...
1317
- def is_extended(self): ...
1318
- def is_property_hidden(self): ...
1319
- def is_property_overridable_library(self): ...
1320
- def is_property_readonly(self): ...
1321
- def is_property_set(self): ...
1322
- def items(self): ...
1323
- def keyframe_delete(self): ...
1324
- def keyframe_insert(self): ...
1325
- def keys(self): ...
1326
- def path_from_id(self): ...
1634
+ """
1635
+ ...
1636
+
1637
+ def driver_add(self):
1638
+ """ """
1639
+ ...
1640
+
1641
+ def driver_remove(self):
1642
+ """ """
1643
+ ...
1644
+
1645
+ def get(self):
1646
+ """ """
1647
+ ...
1648
+
1649
+ def id_properties_clear(self):
1650
+ """ """
1651
+ ...
1652
+
1653
+ def id_properties_ensure(self):
1654
+ """ """
1655
+ ...
1656
+
1657
+ def id_properties_ui(self):
1658
+ """ """
1659
+ ...
1660
+
1661
+ def is_extended(self):
1662
+ """ """
1663
+ ...
1664
+
1665
+ def is_property_hidden(self):
1666
+ """ """
1667
+ ...
1668
+
1669
+ def is_property_overridable_library(self):
1670
+ """ """
1671
+ ...
1672
+
1673
+ def is_property_readonly(self):
1674
+ """ """
1675
+ ...
1676
+
1677
+ def is_property_set(self):
1678
+ """ """
1679
+ ...
1680
+
1681
+ def items(self):
1682
+ """ """
1683
+ ...
1684
+
1685
+ def keyframe_delete(self):
1686
+ """ """
1687
+ ...
1688
+
1689
+ def keyframe_insert(self):
1690
+ """ """
1691
+ ...
1692
+
1693
+ def keys(self):
1694
+ """ """
1695
+ ...
1696
+
1697
+ def path_from_id(self):
1698
+ """ """
1699
+ ...
1700
+
1327
1701
  def path_menu(
1328
1702
  self,
1329
1703
  searchpaths,
@@ -1337,73 +1711,90 @@ class NLA_MT_tracks(bpy_types.Menu, bpy_types._GenericUI):
1337
1711
  ):
1338
1712
  """
1339
1713
 
1340
- :param self:
1341
- :type self:
1342
1714
  :param searchpaths:
1343
- :type searchpaths:
1344
1715
  :param operator:
1345
- :type operator:
1346
1716
  :param props_default:
1347
- :type props_default:
1348
1717
  :param prop_filepath:
1349
- :type prop_filepath:
1350
1718
  :param filter_ext:
1351
- :type filter_ext:
1352
1719
  :param filter_path:
1353
- :type filter_path:
1354
1720
  :param display_name:
1355
- :type display_name:
1356
1721
  :param add_operator:
1357
- :type add_operator:
1358
1722
  """
1359
1723
  ...
1360
1724
 
1361
- def path_resolve(self): ...
1362
- def pop(self): ...
1725
+ def path_resolve(self):
1726
+ """ """
1727
+ ...
1728
+
1729
+ def pop(self):
1730
+ """ """
1731
+ ...
1732
+
1363
1733
  def prepend(self, draw_func):
1364
1734
  """
1365
1735
 
1366
1736
  :param draw_func:
1367
- :type draw_func:
1368
1737
  """
1369
1738
  ...
1370
1739
 
1371
- def property_overridable_library_set(self): ...
1372
- def property_unset(self): ...
1740
+ def property_overridable_library_set(self):
1741
+ """ """
1742
+ ...
1743
+
1744
+ def property_unset(self):
1745
+ """ """
1746
+ ...
1747
+
1373
1748
  def remove(self, draw_func):
1374
1749
  """
1375
1750
 
1376
1751
  :param draw_func:
1377
- :type draw_func:
1378
1752
  """
1379
1753
  ...
1380
1754
 
1381
- def type_recast(self): ...
1382
- def values(self): ...
1755
+ def type_recast(self):
1756
+ """ """
1757
+ ...
1758
+
1759
+ def values(self):
1760
+ """ """
1761
+ ...
1762
+
1763
+ class NLA_MT_strips_transform(bpy_types._GenericUI):
1764
+ """ """
1383
1765
 
1384
- class NLA_MT_view(bpy_types.Menu, bpy_types._GenericUI):
1385
1766
  bl_label: typing.Any
1767
+ """ """
1768
+
1386
1769
  bl_rna: typing.Any
1770
+ """ """
1771
+
1387
1772
  id_data: typing.Any
1773
+ """ """
1388
1774
 
1389
1775
  def append(self, draw_func):
1390
1776
  """
1391
1777
 
1392
1778
  :param draw_func:
1393
- :type draw_func:
1394
1779
  """
1395
1780
  ...
1396
1781
 
1397
- def as_pointer(self): ...
1398
- def bl_rna_get_subclass(self): ...
1399
- def bl_rna_get_subclass_py(self): ...
1400
- def draw(self, context):
1782
+ def as_pointer(self):
1783
+ """ """
1784
+ ...
1785
+
1786
+ def bl_rna_get_subclass(self):
1787
+ """ """
1788
+ ...
1789
+
1790
+ def bl_rna_get_subclass_py(self):
1791
+ """ """
1792
+ ...
1793
+
1794
+ def draw(self, _context):
1401
1795
  """
1402
1796
 
1403
- :param self:
1404
- :type self:
1405
- :param context:
1406
- :type context:
1797
+ :param _context:
1407
1798
  """
1408
1799
  ...
1409
1800
 
@@ -1411,38 +1802,81 @@ class NLA_MT_view(bpy_types.Menu, bpy_types._GenericUI):
1411
1802
  """
1412
1803
 
1413
1804
  :param context:
1414
- :type context:
1415
1805
  :param layout:
1416
- :type layout:
1417
1806
  """
1418
1807
  ...
1419
1808
 
1420
1809
  def draw_preset(self, _context):
1421
1810
  """
1422
1811
 
1423
- :param self:
1424
- :type self:
1425
1812
  :param _context:
1426
- :type _context:
1427
- """
1428
- ...
1429
-
1430
- def driver_add(self): ...
1431
- def driver_remove(self): ...
1432
- def get(self): ...
1433
- def id_properties_clear(self): ...
1434
- def id_properties_ensure(self): ...
1435
- def id_properties_ui(self): ...
1436
- def is_extended(self): ...
1437
- def is_property_hidden(self): ...
1438
- def is_property_overridable_library(self): ...
1439
- def is_property_readonly(self): ...
1440
- def is_property_set(self): ...
1441
- def items(self): ...
1442
- def keyframe_delete(self): ...
1443
- def keyframe_insert(self): ...
1444
- def keys(self): ...
1445
- def path_from_id(self): ...
1813
+ """
1814
+ ...
1815
+
1816
+ def driver_add(self):
1817
+ """ """
1818
+ ...
1819
+
1820
+ def driver_remove(self):
1821
+ """ """
1822
+ ...
1823
+
1824
+ def get(self):
1825
+ """ """
1826
+ ...
1827
+
1828
+ def id_properties_clear(self):
1829
+ """ """
1830
+ ...
1831
+
1832
+ def id_properties_ensure(self):
1833
+ """ """
1834
+ ...
1835
+
1836
+ def id_properties_ui(self):
1837
+ """ """
1838
+ ...
1839
+
1840
+ def is_extended(self):
1841
+ """ """
1842
+ ...
1843
+
1844
+ def is_property_hidden(self):
1845
+ """ """
1846
+ ...
1847
+
1848
+ def is_property_overridable_library(self):
1849
+ """ """
1850
+ ...
1851
+
1852
+ def is_property_readonly(self):
1853
+ """ """
1854
+ ...
1855
+
1856
+ def is_property_set(self):
1857
+ """ """
1858
+ ...
1859
+
1860
+ def items(self):
1861
+ """ """
1862
+ ...
1863
+
1864
+ def keyframe_delete(self):
1865
+ """ """
1866
+ ...
1867
+
1868
+ def keyframe_insert(self):
1869
+ """ """
1870
+ ...
1871
+
1872
+ def keys(self):
1873
+ """ """
1874
+ ...
1875
+
1876
+ def path_from_id(self):
1877
+ """ """
1878
+ ...
1879
+
1446
1880
  def path_menu(
1447
1881
  self,
1448
1882
  searchpaths,
@@ -1456,73 +1890,93 @@ class NLA_MT_view(bpy_types.Menu, bpy_types._GenericUI):
1456
1890
  ):
1457
1891
  """
1458
1892
 
1459
- :param self:
1460
- :type self:
1461
1893
  :param searchpaths:
1462
- :type searchpaths:
1463
1894
  :param operator:
1464
- :type operator:
1465
1895
  :param props_default:
1466
- :type props_default:
1467
1896
  :param prop_filepath:
1468
- :type prop_filepath:
1469
1897
  :param filter_ext:
1470
- :type filter_ext:
1471
1898
  :param filter_path:
1472
- :type filter_path:
1473
1899
  :param display_name:
1474
- :type display_name:
1475
1900
  :param add_operator:
1476
- :type add_operator:
1477
1901
  """
1478
1902
  ...
1479
1903
 
1480
- def path_resolve(self): ...
1481
- def pop(self): ...
1904
+ def path_resolve(self):
1905
+ """ """
1906
+ ...
1907
+
1908
+ def pop(self):
1909
+ """ """
1910
+ ...
1911
+
1482
1912
  def prepend(self, draw_func):
1483
1913
  """
1484
1914
 
1485
1915
  :param draw_func:
1486
- :type draw_func:
1487
1916
  """
1488
1917
  ...
1489
1918
 
1490
- def property_overridable_library_set(self): ...
1491
- def property_unset(self): ...
1919
+ def property_overridable_library_set(self):
1920
+ """ """
1921
+ ...
1922
+
1923
+ def property_unset(self):
1924
+ """ """
1925
+ ...
1926
+
1492
1927
  def remove(self, draw_func):
1493
1928
  """
1494
1929
 
1495
1930
  :param draw_func:
1496
- :type draw_func:
1497
1931
  """
1498
1932
  ...
1499
1933
 
1500
- def type_recast(self): ...
1501
- def values(self): ...
1934
+ def type_recast(self):
1935
+ """ """
1936
+ ...
1937
+
1938
+ def values(self):
1939
+ """ """
1940
+ ...
1941
+
1942
+ class NLA_MT_tracks(bpy_types._GenericUI):
1943
+ """ """
1502
1944
 
1503
- class NLA_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
1504
1945
  bl_label: typing.Any
1946
+ """ """
1947
+
1505
1948
  bl_rna: typing.Any
1949
+ """ """
1950
+
1951
+ bl_translation_context: typing.Any
1952
+ """ """
1953
+
1506
1954
  id_data: typing.Any
1955
+ """ """
1507
1956
 
1508
1957
  def append(self, draw_func):
1509
1958
  """
1510
1959
 
1511
1960
  :param draw_func:
1512
- :type draw_func:
1513
1961
  """
1514
1962
  ...
1515
1963
 
1516
- def as_pointer(self): ...
1517
- def bl_rna_get_subclass(self): ...
1518
- def bl_rna_get_subclass_py(self): ...
1964
+ def as_pointer(self):
1965
+ """ """
1966
+ ...
1967
+
1968
+ def bl_rna_get_subclass(self):
1969
+ """ """
1970
+ ...
1971
+
1972
+ def bl_rna_get_subclass_py(self):
1973
+ """ """
1974
+ ...
1975
+
1519
1976
  def draw(self, _context):
1520
1977
  """
1521
1978
 
1522
- :param self:
1523
- :type self:
1524
1979
  :param _context:
1525
- :type _context:
1526
1980
  """
1527
1981
  ...
1528
1982
 
@@ -1530,38 +1984,81 @@ class NLA_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
1530
1984
  """
1531
1985
 
1532
1986
  :param context:
1533
- :type context:
1534
1987
  :param layout:
1535
- :type layout:
1536
1988
  """
1537
1989
  ...
1538
1990
 
1539
1991
  def draw_preset(self, _context):
1540
1992
  """
1541
1993
 
1542
- :param self:
1543
- :type self:
1544
1994
  :param _context:
1545
- :type _context:
1546
- """
1547
- ...
1548
-
1549
- def driver_add(self): ...
1550
- def driver_remove(self): ...
1551
- def get(self): ...
1552
- def id_properties_clear(self): ...
1553
- def id_properties_ensure(self): ...
1554
- def id_properties_ui(self): ...
1555
- def is_extended(self): ...
1556
- def is_property_hidden(self): ...
1557
- def is_property_overridable_library(self): ...
1558
- def is_property_readonly(self): ...
1559
- def is_property_set(self): ...
1560
- def items(self): ...
1561
- def keyframe_delete(self): ...
1562
- def keyframe_insert(self): ...
1563
- def keys(self): ...
1564
- def path_from_id(self): ...
1995
+ """
1996
+ ...
1997
+
1998
+ def driver_add(self):
1999
+ """ """
2000
+ ...
2001
+
2002
+ def driver_remove(self):
2003
+ """ """
2004
+ ...
2005
+
2006
+ def get(self):
2007
+ """ """
2008
+ ...
2009
+
2010
+ def id_properties_clear(self):
2011
+ """ """
2012
+ ...
2013
+
2014
+ def id_properties_ensure(self):
2015
+ """ """
2016
+ ...
2017
+
2018
+ def id_properties_ui(self):
2019
+ """ """
2020
+ ...
2021
+
2022
+ def is_extended(self):
2023
+ """ """
2024
+ ...
2025
+
2026
+ def is_property_hidden(self):
2027
+ """ """
2028
+ ...
2029
+
2030
+ def is_property_overridable_library(self):
2031
+ """ """
2032
+ ...
2033
+
2034
+ def is_property_readonly(self):
2035
+ """ """
2036
+ ...
2037
+
2038
+ def is_property_set(self):
2039
+ """ """
2040
+ ...
2041
+
2042
+ def items(self):
2043
+ """ """
2044
+ ...
2045
+
2046
+ def keyframe_delete(self):
2047
+ """ """
2048
+ ...
2049
+
2050
+ def keyframe_insert(self):
2051
+ """ """
2052
+ ...
2053
+
2054
+ def keys(self):
2055
+ """ """
2056
+ ...
2057
+
2058
+ def path_from_id(self):
2059
+ """ """
2060
+ ...
2061
+
1565
2062
  def path_menu(
1566
2063
  self,
1567
2064
  searchpaths,
@@ -1575,172 +2072,622 @@ class NLA_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
1575
2072
  ):
1576
2073
  """
1577
2074
 
1578
- :param self:
1579
- :type self:
1580
2075
  :param searchpaths:
1581
- :type searchpaths:
1582
2076
  :param operator:
1583
- :type operator:
1584
2077
  :param props_default:
1585
- :type props_default:
1586
2078
  :param prop_filepath:
1587
- :type prop_filepath:
1588
2079
  :param filter_ext:
1589
- :type filter_ext:
1590
2080
  :param filter_path:
1591
- :type filter_path:
1592
2081
  :param display_name:
1593
- :type display_name:
1594
2082
  :param add_operator:
1595
- :type add_operator:
1596
2083
  """
1597
2084
  ...
1598
2085
 
1599
- def path_resolve(self): ...
1600
- def pop(self): ...
2086
+ def path_resolve(self):
2087
+ """ """
2088
+ ...
2089
+
2090
+ def pop(self):
2091
+ """ """
2092
+ ...
2093
+
1601
2094
  def prepend(self, draw_func):
1602
2095
  """
1603
2096
 
1604
2097
  :param draw_func:
1605
- :type draw_func:
1606
2098
  """
1607
2099
  ...
1608
2100
 
1609
- def property_overridable_library_set(self): ...
1610
- def property_unset(self): ...
2101
+ def property_overridable_library_set(self):
2102
+ """ """
2103
+ ...
2104
+
2105
+ def property_unset(self):
2106
+ """ """
2107
+ ...
2108
+
1611
2109
  def remove(self, draw_func):
1612
2110
  """
1613
2111
 
1614
2112
  :param draw_func:
1615
- :type draw_func:
1616
2113
  """
1617
2114
  ...
1618
2115
 
1619
- def type_recast(self): ...
1620
- def values(self): ...
2116
+ def type_recast(self):
2117
+ """ """
2118
+ ...
2119
+
2120
+ def values(self):
2121
+ """ """
2122
+ ...
2123
+
2124
+ class NLA_MT_view(bpy_types._GenericUI):
2125
+ """ """
1621
2126
 
1622
- class NLA_PT_action(
1623
- bpy_types.Panel,
1624
- bl_ui.space_dopesheet.DopesheetActionPanelBase,
1625
- bpy_types._GenericUI,
1626
- ):
1627
- bl_category: typing.Any
1628
2127
  bl_label: typing.Any
1629
- bl_options: typing.Any
1630
- bl_region_type: typing.Any
2128
+ """ """
2129
+
1631
2130
  bl_rna: typing.Any
1632
- bl_space_type: typing.Any
2131
+ """ """
2132
+
1633
2133
  id_data: typing.Any
2134
+ """ """
1634
2135
 
1635
2136
  def append(self, draw_func):
1636
2137
  """
1637
2138
 
1638
2139
  :param draw_func:
1639
- :type draw_func:
1640
2140
  """
1641
2141
  ...
1642
2142
 
1643
- def as_pointer(self): ...
1644
- def bl_rna_get_subclass(self): ...
1645
- def bl_rna_get_subclass_py(self): ...
2143
+ def as_pointer(self):
2144
+ """ """
2145
+ ...
2146
+
2147
+ def bl_rna_get_subclass(self):
2148
+ """ """
2149
+ ...
2150
+
2151
+ def bl_rna_get_subclass_py(self):
2152
+ """ """
2153
+ ...
2154
+
1646
2155
  def draw(self, context):
1647
2156
  """
1648
2157
 
1649
- :param self:
1650
- :type self:
1651
2158
  :param context:
1652
- :type context:
1653
2159
  """
1654
2160
  ...
1655
2161
 
1656
- def draw_generic_panel(self, _context, layout, action):
1657
- """
1658
-
1659
- :param _context:
1660
- :type _context:
1661
- :param layout:
1662
- :type layout:
1663
- :param action:
1664
- :type action:
1665
- """
1666
- ...
1667
-
1668
- def driver_add(self): ...
1669
- def driver_remove(self): ...
1670
- def get(self): ...
1671
- def id_properties_clear(self): ...
1672
- def id_properties_ensure(self): ...
1673
- def id_properties_ui(self): ...
1674
- def is_extended(self): ...
1675
- def is_property_hidden(self): ...
1676
- def is_property_overridable_library(self): ...
1677
- def is_property_readonly(self): ...
1678
- def is_property_set(self): ...
1679
- def items(self): ...
1680
- def keyframe_delete(self): ...
1681
- def keyframe_insert(self): ...
1682
- def keys(self): ...
1683
- def path_from_id(self): ...
1684
- def path_resolve(self): ...
1685
- def poll(self, context):
2162
+ def draw_collapsible(self, context, layout):
1686
2163
  """
1687
2164
 
1688
2165
  :param context:
1689
- :type context:
2166
+ :param layout:
1690
2167
  """
1691
2168
  ...
1692
2169
 
1693
- def pop(self): ...
1694
- def prepend(self, draw_func):
2170
+ def draw_preset(self, _context):
1695
2171
  """
1696
2172
 
1697
- :param draw_func:
1698
- :type draw_func:
2173
+ :param _context:
1699
2174
  """
1700
2175
  ...
1701
2176
 
1702
- def property_overridable_library_set(self): ...
1703
- def property_unset(self): ...
1704
- def remove(self, draw_func):
2177
+ def driver_add(self):
2178
+ """ """
2179
+ ...
2180
+
2181
+ def driver_remove(self):
2182
+ """ """
2183
+ ...
2184
+
2185
+ def get(self):
2186
+ """ """
2187
+ ...
2188
+
2189
+ def id_properties_clear(self):
2190
+ """ """
2191
+ ...
2192
+
2193
+ def id_properties_ensure(self):
2194
+ """ """
2195
+ ...
2196
+
2197
+ def id_properties_ui(self):
2198
+ """ """
2199
+ ...
2200
+
2201
+ def is_extended(self):
2202
+ """ """
2203
+ ...
2204
+
2205
+ def is_property_hidden(self):
2206
+ """ """
2207
+ ...
2208
+
2209
+ def is_property_overridable_library(self):
2210
+ """ """
2211
+ ...
2212
+
2213
+ def is_property_readonly(self):
2214
+ """ """
2215
+ ...
2216
+
2217
+ def is_property_set(self):
2218
+ """ """
2219
+ ...
2220
+
2221
+ def items(self):
2222
+ """ """
2223
+ ...
2224
+
2225
+ def keyframe_delete(self):
2226
+ """ """
2227
+ ...
2228
+
2229
+ def keyframe_insert(self):
2230
+ """ """
2231
+ ...
2232
+
2233
+ def keys(self):
2234
+ """ """
2235
+ ...
2236
+
2237
+ def path_from_id(self):
2238
+ """ """
2239
+ ...
2240
+
2241
+ def path_menu(
2242
+ self,
2243
+ searchpaths,
2244
+ operator,
2245
+ props_default,
2246
+ prop_filepath,
2247
+ filter_ext,
2248
+ filter_path,
2249
+ display_name,
2250
+ add_operator,
2251
+ ):
2252
+ """
2253
+
2254
+ :param searchpaths:
2255
+ :param operator:
2256
+ :param props_default:
2257
+ :param prop_filepath:
2258
+ :param filter_ext:
2259
+ :param filter_path:
2260
+ :param display_name:
2261
+ :param add_operator:
2262
+ """
2263
+ ...
2264
+
2265
+ def path_resolve(self):
2266
+ """ """
2267
+ ...
2268
+
2269
+ def pop(self):
2270
+ """ """
2271
+ ...
2272
+
2273
+ def prepend(self, draw_func):
2274
+ """
2275
+
2276
+ :param draw_func:
2277
+ """
2278
+ ...
2279
+
2280
+ def property_overridable_library_set(self):
2281
+ """ """
2282
+ ...
2283
+
2284
+ def property_unset(self):
2285
+ """ """
2286
+ ...
2287
+
2288
+ def remove(self, draw_func):
2289
+ """
2290
+
2291
+ :param draw_func:
2292
+ """
2293
+ ...
2294
+
2295
+ def type_recast(self):
2296
+ """ """
2297
+ ...
2298
+
2299
+ def values(self):
2300
+ """ """
2301
+ ...
2302
+
2303
+ class NLA_MT_view_pie(bpy_types._GenericUI):
2304
+ """ """
2305
+
2306
+ bl_label: typing.Any
2307
+ """ """
2308
+
2309
+ bl_rna: typing.Any
2310
+ """ """
2311
+
2312
+ id_data: typing.Any
2313
+ """ """
2314
+
2315
+ def append(self, draw_func):
2316
+ """
2317
+
2318
+ :param draw_func:
2319
+ """
2320
+ ...
2321
+
2322
+ def as_pointer(self):
2323
+ """ """
2324
+ ...
2325
+
2326
+ def bl_rna_get_subclass(self):
2327
+ """ """
2328
+ ...
2329
+
2330
+ def bl_rna_get_subclass_py(self):
2331
+ """ """
2332
+ ...
2333
+
2334
+ def draw(self, _context):
2335
+ """
2336
+
2337
+ :param _context:
2338
+ """
2339
+ ...
2340
+
2341
+ def draw_collapsible(self, context, layout):
2342
+ """
2343
+
2344
+ :param context:
2345
+ :param layout:
2346
+ """
2347
+ ...
2348
+
2349
+ def draw_preset(self, _context):
2350
+ """
2351
+
2352
+ :param _context:
2353
+ """
2354
+ ...
2355
+
2356
+ def driver_add(self):
2357
+ """ """
2358
+ ...
2359
+
2360
+ def driver_remove(self):
2361
+ """ """
2362
+ ...
2363
+
2364
+ def get(self):
2365
+ """ """
2366
+ ...
2367
+
2368
+ def id_properties_clear(self):
2369
+ """ """
2370
+ ...
2371
+
2372
+ def id_properties_ensure(self):
2373
+ """ """
2374
+ ...
2375
+
2376
+ def id_properties_ui(self):
2377
+ """ """
2378
+ ...
2379
+
2380
+ def is_extended(self):
2381
+ """ """
2382
+ ...
2383
+
2384
+ def is_property_hidden(self):
2385
+ """ """
2386
+ ...
2387
+
2388
+ def is_property_overridable_library(self):
2389
+ """ """
2390
+ ...
2391
+
2392
+ def is_property_readonly(self):
2393
+ """ """
2394
+ ...
2395
+
2396
+ def is_property_set(self):
2397
+ """ """
2398
+ ...
2399
+
2400
+ def items(self):
2401
+ """ """
2402
+ ...
2403
+
2404
+ def keyframe_delete(self):
2405
+ """ """
2406
+ ...
2407
+
2408
+ def keyframe_insert(self):
2409
+ """ """
2410
+ ...
2411
+
2412
+ def keys(self):
2413
+ """ """
2414
+ ...
2415
+
2416
+ def path_from_id(self):
2417
+ """ """
2418
+ ...
2419
+
2420
+ def path_menu(
2421
+ self,
2422
+ searchpaths,
2423
+ operator,
2424
+ props_default,
2425
+ prop_filepath,
2426
+ filter_ext,
2427
+ filter_path,
2428
+ display_name,
2429
+ add_operator,
2430
+ ):
2431
+ """
2432
+
2433
+ :param searchpaths:
2434
+ :param operator:
2435
+ :param props_default:
2436
+ :param prop_filepath:
2437
+ :param filter_ext:
2438
+ :param filter_path:
2439
+ :param display_name:
2440
+ :param add_operator:
2441
+ """
2442
+ ...
2443
+
2444
+ def path_resolve(self):
2445
+ """ """
2446
+ ...
2447
+
2448
+ def pop(self):
2449
+ """ """
2450
+ ...
2451
+
2452
+ def prepend(self, draw_func):
2453
+ """
2454
+
2455
+ :param draw_func:
2456
+ """
2457
+ ...
2458
+
2459
+ def property_overridable_library_set(self):
2460
+ """ """
2461
+ ...
2462
+
2463
+ def property_unset(self):
2464
+ """ """
2465
+ ...
2466
+
2467
+ def remove(self, draw_func):
2468
+ """
2469
+
2470
+ :param draw_func:
2471
+ """
2472
+ ...
2473
+
2474
+ def type_recast(self):
2475
+ """ """
2476
+ ...
2477
+
2478
+ def values(self):
2479
+ """ """
2480
+ ...
2481
+
2482
+ class NLA_PT_action(bpy_types._GenericUI):
2483
+ """ """
2484
+
2485
+ bl_category: typing.Any
2486
+ """ """
2487
+
2488
+ bl_label: typing.Any
2489
+ """ """
2490
+
2491
+ bl_options: typing.Any
2492
+ """ """
2493
+
2494
+ bl_region_type: typing.Any
2495
+ """ """
2496
+
2497
+ bl_rna: typing.Any
2498
+ """ """
2499
+
2500
+ bl_space_type: typing.Any
2501
+ """ """
2502
+
2503
+ id_data: typing.Any
2504
+ """ """
2505
+
2506
+ def append(self, draw_func):
2507
+ """
2508
+
2509
+ :param draw_func:
2510
+ """
2511
+ ...
2512
+
2513
+ def as_pointer(self):
2514
+ """ """
2515
+ ...
2516
+
2517
+ def bl_rna_get_subclass(self):
2518
+ """ """
2519
+ ...
2520
+
2521
+ def bl_rna_get_subclass_py(self):
2522
+ """ """
2523
+ ...
2524
+
2525
+ def draw(self, context):
2526
+ """
2527
+
2528
+ :param context:
2529
+ """
2530
+ ...
2531
+
2532
+ def draw_generic_panel(self, _context, layout, action):
2533
+ """
2534
+
2535
+ :param _context:
2536
+ :param layout:
2537
+ :param action:
2538
+ """
2539
+ ...
2540
+
2541
+ def driver_add(self):
2542
+ """ """
2543
+ ...
2544
+
2545
+ def driver_remove(self):
2546
+ """ """
2547
+ ...
2548
+
2549
+ def get(self):
2550
+ """ """
2551
+ ...
2552
+
2553
+ def id_properties_clear(self):
2554
+ """ """
2555
+ ...
2556
+
2557
+ def id_properties_ensure(self):
2558
+ """ """
2559
+ ...
2560
+
2561
+ def id_properties_ui(self):
2562
+ """ """
2563
+ ...
2564
+
2565
+ def is_extended(self):
2566
+ """ """
2567
+ ...
2568
+
2569
+ def is_property_hidden(self):
2570
+ """ """
2571
+ ...
2572
+
2573
+ def is_property_overridable_library(self):
2574
+ """ """
2575
+ ...
2576
+
2577
+ def is_property_readonly(self):
2578
+ """ """
2579
+ ...
2580
+
2581
+ def is_property_set(self):
2582
+ """ """
2583
+ ...
2584
+
2585
+ def items(self):
2586
+ """ """
2587
+ ...
2588
+
2589
+ def keyframe_delete(self):
2590
+ """ """
2591
+ ...
2592
+
2593
+ def keyframe_insert(self):
2594
+ """ """
2595
+ ...
2596
+
2597
+ def keys(self):
2598
+ """ """
2599
+ ...
2600
+
2601
+ def path_from_id(self):
2602
+ """ """
2603
+ ...
2604
+
2605
+ def path_resolve(self):
2606
+ """ """
2607
+ ...
2608
+
2609
+ def poll(self, context):
2610
+ """
2611
+
2612
+ :param context:
2613
+ """
2614
+ ...
2615
+
2616
+ def pop(self):
2617
+ """ """
2618
+ ...
2619
+
2620
+ def prepend(self, draw_func):
2621
+ """
2622
+
2623
+ :param draw_func:
2624
+ """
2625
+ ...
2626
+
2627
+ def property_overridable_library_set(self):
2628
+ """ """
2629
+ ...
2630
+
2631
+ def property_unset(self):
2632
+ """ """
2633
+ ...
2634
+
2635
+ def remove(self, draw_func):
1705
2636
  """
1706
2637
 
1707
2638
  :param draw_func:
1708
- :type draw_func:
1709
2639
  """
1710
2640
  ...
1711
2641
 
1712
- def type_recast(self): ...
1713
- def values(self): ...
2642
+ def type_recast(self):
2643
+ """ """
2644
+ ...
2645
+
2646
+ def values(self):
2647
+ """ """
2648
+ ...
2649
+
2650
+ class NLA_PT_filters(bpy_types._GenericUI):
2651
+ """ """
1714
2652
 
1715
- class NLA_PT_filters(
1716
- bpy_types.Panel,
1717
- bl_ui.space_dopesheet.DopesheetFilterPopoverBase,
1718
- bpy_types._GenericUI,
1719
- ):
1720
2653
  bl_label: typing.Any
2654
+ """ """
2655
+
1721
2656
  bl_region_type: typing.Any
2657
+ """ """
2658
+
1722
2659
  bl_rna: typing.Any
2660
+ """ """
2661
+
1723
2662
  bl_space_type: typing.Any
2663
+ """ """
2664
+
1724
2665
  id_data: typing.Any
2666
+ """ """
1725
2667
 
1726
2668
  def append(self, draw_func):
1727
2669
  """
1728
2670
 
1729
2671
  :param draw_func:
1730
- :type draw_func:
1731
2672
  """
1732
2673
  ...
1733
2674
 
1734
- def as_pointer(self): ...
1735
- def bl_rna_get_subclass(self): ...
1736
- def bl_rna_get_subclass_py(self): ...
2675
+ def as_pointer(self):
2676
+ """ """
2677
+ ...
2678
+
2679
+ def bl_rna_get_subclass(self):
2680
+ """ """
2681
+ ...
2682
+
2683
+ def bl_rna_get_subclass_py(self):
2684
+ """ """
2685
+ ...
2686
+
1737
2687
  def draw(self, context):
1738
2688
  """
1739
2689
 
1740
- :param self:
1741
- :type self:
1742
2690
  :param context:
1743
- :type context:
1744
2691
  """
1745
2692
  ...
1746
2693
 
@@ -1748,9 +2695,7 @@ class NLA_PT_filters(
1748
2695
  """
1749
2696
 
1750
2697
  :param context:
1751
- :type context:
1752
2698
  :param layout:
1753
- :type layout:
1754
2699
  """
1755
2700
  ...
1756
2701
 
@@ -1758,11 +2703,8 @@ class NLA_PT_filters(
1758
2703
  """
1759
2704
 
1760
2705
  :param context:
1761
- :type context:
1762
2706
  :param layout:
1763
- :type layout:
1764
2707
  :param generic_filters_only:
1765
- :type generic_filters_only:
1766
2708
  """
1767
2709
  ...
1768
2710
 
@@ -1770,114 +2712,254 @@ class NLA_PT_filters(
1770
2712
  """
1771
2713
 
1772
2714
  :param context:
1773
- :type context:
1774
2715
  :param layout:
1775
- :type layout:
1776
- """
1777
- ...
1778
-
1779
- def driver_add(self): ...
1780
- def driver_remove(self): ...
1781
- def get(self): ...
1782
- def id_properties_clear(self): ...
1783
- def id_properties_ensure(self): ...
1784
- def id_properties_ui(self): ...
1785
- def is_extended(self): ...
1786
- def is_property_hidden(self): ...
1787
- def is_property_overridable_library(self): ...
1788
- def is_property_readonly(self): ...
1789
- def is_property_set(self): ...
1790
- def items(self): ...
1791
- def keyframe_delete(self): ...
1792
- def keyframe_insert(self): ...
1793
- def keys(self): ...
1794
- def path_from_id(self): ...
1795
- def path_resolve(self): ...
1796
- def pop(self): ...
2716
+ """
2717
+ ...
2718
+
2719
+ def driver_add(self):
2720
+ """ """
2721
+ ...
2722
+
2723
+ def driver_remove(self):
2724
+ """ """
2725
+ ...
2726
+
2727
+ def get(self):
2728
+ """ """
2729
+ ...
2730
+
2731
+ def id_properties_clear(self):
2732
+ """ """
2733
+ ...
2734
+
2735
+ def id_properties_ensure(self):
2736
+ """ """
2737
+ ...
2738
+
2739
+ def id_properties_ui(self):
2740
+ """ """
2741
+ ...
2742
+
2743
+ def is_extended(self):
2744
+ """ """
2745
+ ...
2746
+
2747
+ def is_property_hidden(self):
2748
+ """ """
2749
+ ...
2750
+
2751
+ def is_property_overridable_library(self):
2752
+ """ """
2753
+ ...
2754
+
2755
+ def is_property_readonly(self):
2756
+ """ """
2757
+ ...
2758
+
2759
+ def is_property_set(self):
2760
+ """ """
2761
+ ...
2762
+
2763
+ def items(self):
2764
+ """ """
2765
+ ...
2766
+
2767
+ def keyframe_delete(self):
2768
+ """ """
2769
+ ...
2770
+
2771
+ def keyframe_insert(self):
2772
+ """ """
2773
+ ...
2774
+
2775
+ def keys(self):
2776
+ """ """
2777
+ ...
2778
+
2779
+ def path_from_id(self):
2780
+ """ """
2781
+ ...
2782
+
2783
+ def path_resolve(self):
2784
+ """ """
2785
+ ...
2786
+
2787
+ def pop(self):
2788
+ """ """
2789
+ ...
2790
+
1797
2791
  def prepend(self, draw_func):
1798
2792
  """
1799
2793
 
1800
2794
  :param draw_func:
1801
- :type draw_func:
1802
2795
  """
1803
2796
  ...
1804
2797
 
1805
- def property_overridable_library_set(self): ...
1806
- def property_unset(self): ...
2798
+ def property_overridable_library_set(self):
2799
+ """ """
2800
+ ...
2801
+
2802
+ def property_unset(self):
2803
+ """ """
2804
+ ...
2805
+
1807
2806
  def remove(self, draw_func):
1808
2807
  """
1809
2808
 
1810
2809
  :param draw_func:
1811
- :type draw_func:
1812
2810
  """
1813
2811
  ...
1814
2812
 
1815
- def type_recast(self): ...
1816
- def values(self): ...
2813
+ def type_recast(self):
2814
+ """ """
2815
+ ...
2816
+
2817
+ def values(self):
2818
+ """ """
2819
+ ...
2820
+
2821
+ class NLA_PT_snapping(bpy_types._GenericUI):
2822
+ """ """
1817
2823
 
1818
- class NLA_PT_snapping(bpy_types.Panel, bpy_types._GenericUI):
1819
2824
  bl_label: typing.Any
2825
+ """ """
2826
+
1820
2827
  bl_region_type: typing.Any
2828
+ """ """
2829
+
1821
2830
  bl_rna: typing.Any
2831
+ """ """
2832
+
1822
2833
  bl_space_type: typing.Any
2834
+ """ """
2835
+
1823
2836
  id_data: typing.Any
2837
+ """ """
1824
2838
 
1825
2839
  def append(self, draw_func):
1826
2840
  """
1827
2841
 
1828
2842
  :param draw_func:
1829
- :type draw_func:
1830
2843
  """
1831
2844
  ...
1832
2845
 
1833
- def as_pointer(self): ...
1834
- def bl_rna_get_subclass(self): ...
1835
- def bl_rna_get_subclass_py(self): ...
2846
+ def as_pointer(self):
2847
+ """ """
2848
+ ...
2849
+
2850
+ def bl_rna_get_subclass(self):
2851
+ """ """
2852
+ ...
2853
+
2854
+ def bl_rna_get_subclass_py(self):
2855
+ """ """
2856
+ ...
2857
+
1836
2858
  def draw(self, context):
1837
2859
  """
1838
2860
 
1839
- :param self:
1840
- :type self:
1841
2861
  :param context:
1842
- :type context:
1843
- """
1844
- ...
1845
-
1846
- def driver_add(self): ...
1847
- def driver_remove(self): ...
1848
- def get(self): ...
1849
- def id_properties_clear(self): ...
1850
- def id_properties_ensure(self): ...
1851
- def id_properties_ui(self): ...
1852
- def is_extended(self): ...
1853
- def is_property_hidden(self): ...
1854
- def is_property_overridable_library(self): ...
1855
- def is_property_readonly(self): ...
1856
- def is_property_set(self): ...
1857
- def items(self): ...
1858
- def keyframe_delete(self): ...
1859
- def keyframe_insert(self): ...
1860
- def keys(self): ...
1861
- def path_from_id(self): ...
1862
- def path_resolve(self): ...
1863
- def pop(self): ...
2862
+ """
2863
+ ...
2864
+
2865
+ def driver_add(self):
2866
+ """ """
2867
+ ...
2868
+
2869
+ def driver_remove(self):
2870
+ """ """
2871
+ ...
2872
+
2873
+ def get(self):
2874
+ """ """
2875
+ ...
2876
+
2877
+ def id_properties_clear(self):
2878
+ """ """
2879
+ ...
2880
+
2881
+ def id_properties_ensure(self):
2882
+ """ """
2883
+ ...
2884
+
2885
+ def id_properties_ui(self):
2886
+ """ """
2887
+ ...
2888
+
2889
+ def is_extended(self):
2890
+ """ """
2891
+ ...
2892
+
2893
+ def is_property_hidden(self):
2894
+ """ """
2895
+ ...
2896
+
2897
+ def is_property_overridable_library(self):
2898
+ """ """
2899
+ ...
2900
+
2901
+ def is_property_readonly(self):
2902
+ """ """
2903
+ ...
2904
+
2905
+ def is_property_set(self):
2906
+ """ """
2907
+ ...
2908
+
2909
+ def items(self):
2910
+ """ """
2911
+ ...
2912
+
2913
+ def keyframe_delete(self):
2914
+ """ """
2915
+ ...
2916
+
2917
+ def keyframe_insert(self):
2918
+ """ """
2919
+ ...
2920
+
2921
+ def keys(self):
2922
+ """ """
2923
+ ...
2924
+
2925
+ def path_from_id(self):
2926
+ """ """
2927
+ ...
2928
+
2929
+ def path_resolve(self):
2930
+ """ """
2931
+ ...
2932
+
2933
+ def pop(self):
2934
+ """ """
2935
+ ...
2936
+
1864
2937
  def prepend(self, draw_func):
1865
2938
  """
1866
2939
 
1867
2940
  :param draw_func:
1868
- :type draw_func:
1869
2941
  """
1870
2942
  ...
1871
2943
 
1872
- def property_overridable_library_set(self): ...
1873
- def property_unset(self): ...
2944
+ def property_overridable_library_set(self):
2945
+ """ """
2946
+ ...
2947
+
2948
+ def property_unset(self):
2949
+ """ """
2950
+ ...
2951
+
1874
2952
  def remove(self, draw_func):
1875
2953
  """
1876
2954
 
1877
2955
  :param draw_func:
1878
- :type draw_func:
1879
2956
  """
1880
2957
  ...
1881
2958
 
1882
- def type_recast(self): ...
1883
- def values(self): ...
2959
+ def type_recast(self):
2960
+ """ """
2961
+ ...
2962
+
2963
+ def values(self):
2964
+ """ """
2965
+ ...