fake-bpy-module 20240224__py3-none-any.whl → 20240326__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 (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  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 +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  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 +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  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 +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  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 +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  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 +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,72 +1,265 @@
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 GRAPH_HT_header(bpy_types.Header, bpy_types._GenericUI):
6
+ class GRAPH_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
+ """ """
17
+
18
+ def append(self, draw_func):
19
+ """
20
+
21
+ :param draw_func:
22
+ """
23
+ ...
24
+
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
+
37
+ def draw(self, context):
38
+ """
39
+
40
+ :param context:
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
+
116
+ def prepend(self, draw_func):
117
+ """
118
+
119
+ :param draw_func:
120
+ """
121
+ ...
122
+
123
+ def property_overridable_library_set(self):
124
+ """ """
125
+ ...
126
+
127
+ def property_unset(self):
128
+ """ """
129
+ ...
130
+
131
+ def remove(self, draw_func):
132
+ """
133
+
134
+ :param draw_func:
135
+ """
136
+ ...
137
+
138
+ def type_recast(self):
139
+ """ """
140
+ ...
141
+
142
+ def values(self):
143
+ """ """
144
+ ...
145
+
146
+ class GRAPH_MT_channel(bpy_types._GenericUI):
147
+ """ """
11
148
 
12
- def append(self, draw_func): ...
13
- def as_pointer(self): ...
14
- def bl_rna_get_subclass(self): ...
15
- def bl_rna_get_subclass_py(self): ...
16
- def draw(self, context): ...
17
- def driver_add(self): ...
18
- def driver_remove(self): ...
19
- def get(self): ...
20
- def id_properties_clear(self): ...
21
- def id_properties_ensure(self): ...
22
- def id_properties_ui(self): ...
23
- def is_extended(self): ...
24
- def is_property_hidden(self): ...
25
- def is_property_overridable_library(self): ...
26
- def is_property_readonly(self): ...
27
- def is_property_set(self): ...
28
- def items(self): ...
29
- def keyframe_delete(self): ...
30
- def keyframe_insert(self): ...
31
- def keys(self): ...
32
- def path_from_id(self): ...
33
- def path_resolve(self): ...
34
- def pop(self): ...
35
- def prepend(self, draw_func): ...
36
- def property_overridable_library_set(self): ...
37
- def property_unset(self): ...
38
- def remove(self, draw_func): ...
39
- def type_recast(self): ...
40
- def values(self): ...
41
-
42
- class GRAPH_MT_channel(bpy_types.Menu, bpy_types._GenericUI):
43
149
  bl_label: typing.Any
150
+ """ """
151
+
44
152
  bl_rna: typing.Any
153
+ """ """
154
+
45
155
  id_data: typing.Any
156
+ """ """
157
+
158
+ def append(self, draw_func):
159
+ """
160
+
161
+ :param draw_func:
162
+ """
163
+ ...
164
+
165
+ def as_pointer(self):
166
+ """ """
167
+ ...
168
+
169
+ def bl_rna_get_subclass(self):
170
+ """ """
171
+ ...
172
+
173
+ def bl_rna_get_subclass_py(self):
174
+ """ """
175
+ ...
176
+
177
+ def draw(self, context):
178
+ """
179
+
180
+ :param context:
181
+ """
182
+ ...
183
+
184
+ def draw_collapsible(self, context, layout):
185
+ """
186
+
187
+ :param context:
188
+ :param layout:
189
+ """
190
+ ...
191
+
192
+ def draw_preset(self, _context):
193
+ """
194
+
195
+ :param _context:
196
+ """
197
+ ...
198
+
199
+ def driver_add(self):
200
+ """ """
201
+ ...
202
+
203
+ def driver_remove(self):
204
+ """ """
205
+ ...
206
+
207
+ def get(self):
208
+ """ """
209
+ ...
210
+
211
+ def id_properties_clear(self):
212
+ """ """
213
+ ...
214
+
215
+ def id_properties_ensure(self):
216
+ """ """
217
+ ...
218
+
219
+ def id_properties_ui(self):
220
+ """ """
221
+ ...
222
+
223
+ def is_extended(self):
224
+ """ """
225
+ ...
226
+
227
+ def is_property_hidden(self):
228
+ """ """
229
+ ...
230
+
231
+ def is_property_overridable_library(self):
232
+ """ """
233
+ ...
234
+
235
+ def is_property_readonly(self):
236
+ """ """
237
+ ...
238
+
239
+ def is_property_set(self):
240
+ """ """
241
+ ...
242
+
243
+ def items(self):
244
+ """ """
245
+ ...
246
+
247
+ def keyframe_delete(self):
248
+ """ """
249
+ ...
250
+
251
+ def keyframe_insert(self):
252
+ """ """
253
+ ...
254
+
255
+ def keys(self):
256
+ """ """
257
+ ...
258
+
259
+ def path_from_id(self):
260
+ """ """
261
+ ...
46
262
 
47
- def append(self, draw_func): ...
48
- def as_pointer(self): ...
49
- def bl_rna_get_subclass(self): ...
50
- def bl_rna_get_subclass_py(self): ...
51
- def draw(self, context): ...
52
- def draw_collapsible(self, context, layout): ...
53
- def draw_preset(self, _context): ...
54
- def driver_add(self): ...
55
- def driver_remove(self): ...
56
- def get(self): ...
57
- def id_properties_clear(self): ...
58
- def id_properties_ensure(self): ...
59
- def id_properties_ui(self): ...
60
- def is_extended(self): ...
61
- def is_property_hidden(self): ...
62
- def is_property_overridable_library(self): ...
63
- def is_property_readonly(self): ...
64
- def is_property_set(self): ...
65
- def items(self): ...
66
- def keyframe_delete(self): ...
67
- def keyframe_insert(self): ...
68
- def keys(self): ...
69
- def path_from_id(self): ...
70
263
  def path_menu(
71
264
  self,
72
265
  searchpaths,
@@ -77,44 +270,175 @@ class GRAPH_MT_channel(bpy_types.Menu, bpy_types._GenericUI):
77
270
  filter_path,
78
271
  display_name,
79
272
  add_operator,
80
- ): ...
81
- def path_resolve(self): ...
82
- def pop(self): ...
83
- def prepend(self, draw_func): ...
84
- def property_overridable_library_set(self): ...
85
- def property_unset(self): ...
86
- def remove(self, draw_func): ...
87
- def type_recast(self): ...
88
- def values(self): ...
89
-
90
- class GRAPH_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
273
+ ):
274
+ """
275
+
276
+ :param searchpaths:
277
+ :param operator:
278
+ :param props_default:
279
+ :param prop_filepath:
280
+ :param filter_ext:
281
+ :param filter_path:
282
+ :param display_name:
283
+ :param add_operator:
284
+ """
285
+ ...
286
+
287
+ def path_resolve(self):
288
+ """ """
289
+ ...
290
+
291
+ def pop(self):
292
+ """ """
293
+ ...
294
+
295
+ def prepend(self, draw_func):
296
+ """
297
+
298
+ :param draw_func:
299
+ """
300
+ ...
301
+
302
+ def property_overridable_library_set(self):
303
+ """ """
304
+ ...
305
+
306
+ def property_unset(self):
307
+ """ """
308
+ ...
309
+
310
+ def remove(self, draw_func):
311
+ """
312
+
313
+ :param draw_func:
314
+ """
315
+ ...
316
+
317
+ def type_recast(self):
318
+ """ """
319
+ ...
320
+
321
+ def values(self):
322
+ """ """
323
+ ...
324
+
325
+ class GRAPH_MT_context_menu(bpy_types._GenericUI):
326
+ """ """
327
+
91
328
  bl_label: typing.Any
329
+ """ """
330
+
92
331
  bl_rna: typing.Any
332
+ """ """
333
+
93
334
  id_data: typing.Any
335
+ """ """
336
+
337
+ def append(self, draw_func):
338
+ """
339
+
340
+ :param draw_func:
341
+ """
342
+ ...
343
+
344
+ def as_pointer(self):
345
+ """ """
346
+ ...
347
+
348
+ def bl_rna_get_subclass(self):
349
+ """ """
350
+ ...
351
+
352
+ def bl_rna_get_subclass_py(self):
353
+ """ """
354
+ ...
355
+
356
+ def draw(self, _context):
357
+ """
358
+
359
+ :param _context:
360
+ """
361
+ ...
362
+
363
+ def draw_collapsible(self, context, layout):
364
+ """
365
+
366
+ :param context:
367
+ :param layout:
368
+ """
369
+ ...
370
+
371
+ def draw_preset(self, _context):
372
+ """
373
+
374
+ :param _context:
375
+ """
376
+ ...
377
+
378
+ def driver_add(self):
379
+ """ """
380
+ ...
381
+
382
+ def driver_remove(self):
383
+ """ """
384
+ ...
385
+
386
+ def get(self):
387
+ """ """
388
+ ...
389
+
390
+ def id_properties_clear(self):
391
+ """ """
392
+ ...
393
+
394
+ def id_properties_ensure(self):
395
+ """ """
396
+ ...
397
+
398
+ def id_properties_ui(self):
399
+ """ """
400
+ ...
401
+
402
+ def is_extended(self):
403
+ """ """
404
+ ...
405
+
406
+ def is_property_hidden(self):
407
+ """ """
408
+ ...
409
+
410
+ def is_property_overridable_library(self):
411
+ """ """
412
+ ...
413
+
414
+ def is_property_readonly(self):
415
+ """ """
416
+ ...
417
+
418
+ def is_property_set(self):
419
+ """ """
420
+ ...
421
+
422
+ def items(self):
423
+ """ """
424
+ ...
425
+
426
+ def keyframe_delete(self):
427
+ """ """
428
+ ...
429
+
430
+ def keyframe_insert(self):
431
+ """ """
432
+ ...
433
+
434
+ def keys(self):
435
+ """ """
436
+ ...
437
+
438
+ def path_from_id(self):
439
+ """ """
440
+ ...
94
441
 
95
- def append(self, draw_func): ...
96
- def as_pointer(self): ...
97
- def bl_rna_get_subclass(self): ...
98
- def bl_rna_get_subclass_py(self): ...
99
- def draw(self, _context): ...
100
- def draw_collapsible(self, context, layout): ...
101
- def draw_preset(self, _context): ...
102
- def driver_add(self): ...
103
- def driver_remove(self): ...
104
- def get(self): ...
105
- def id_properties_clear(self): ...
106
- def id_properties_ensure(self): ...
107
- def id_properties_ui(self): ...
108
- def is_extended(self): ...
109
- def is_property_hidden(self): ...
110
- def is_property_overridable_library(self): ...
111
- def is_property_readonly(self): ...
112
- def is_property_set(self): ...
113
- def items(self): ...
114
- def keyframe_delete(self): ...
115
- def keyframe_insert(self): ...
116
- def keys(self): ...
117
- def path_from_id(self): ...
118
442
  def path_menu(
119
443
  self,
120
444
  searchpaths,
@@ -125,44 +449,175 @@ class GRAPH_MT_context_menu(bpy_types.Menu, bpy_types._GenericUI):
125
449
  filter_path,
126
450
  display_name,
127
451
  add_operator,
128
- ): ...
129
- def path_resolve(self): ...
130
- def pop(self): ...
131
- def prepend(self, draw_func): ...
132
- def property_overridable_library_set(self): ...
133
- def property_unset(self): ...
134
- def remove(self, draw_func): ...
135
- def type_recast(self): ...
136
- def values(self): ...
137
-
138
- class GRAPH_MT_delete(bpy_types.Menu, bpy_types._GenericUI):
452
+ ):
453
+ """
454
+
455
+ :param searchpaths:
456
+ :param operator:
457
+ :param props_default:
458
+ :param prop_filepath:
459
+ :param filter_ext:
460
+ :param filter_path:
461
+ :param display_name:
462
+ :param add_operator:
463
+ """
464
+ ...
465
+
466
+ def path_resolve(self):
467
+ """ """
468
+ ...
469
+
470
+ def pop(self):
471
+ """ """
472
+ ...
473
+
474
+ def prepend(self, draw_func):
475
+ """
476
+
477
+ :param draw_func:
478
+ """
479
+ ...
480
+
481
+ def property_overridable_library_set(self):
482
+ """ """
483
+ ...
484
+
485
+ def property_unset(self):
486
+ """ """
487
+ ...
488
+
489
+ def remove(self, draw_func):
490
+ """
491
+
492
+ :param draw_func:
493
+ """
494
+ ...
495
+
496
+ def type_recast(self):
497
+ """ """
498
+ ...
499
+
500
+ def values(self):
501
+ """ """
502
+ ...
503
+
504
+ class GRAPH_MT_delete(bpy_types._GenericUI):
505
+ """ """
506
+
139
507
  bl_label: typing.Any
508
+ """ """
509
+
140
510
  bl_rna: typing.Any
511
+ """ """
512
+
141
513
  id_data: typing.Any
514
+ """ """
515
+
516
+ def append(self, draw_func):
517
+ """
518
+
519
+ :param draw_func:
520
+ """
521
+ ...
522
+
523
+ def as_pointer(self):
524
+ """ """
525
+ ...
526
+
527
+ def bl_rna_get_subclass(self):
528
+ """ """
529
+ ...
530
+
531
+ def bl_rna_get_subclass_py(self):
532
+ """ """
533
+ ...
534
+
535
+ def draw(self, _context):
536
+ """
537
+
538
+ :param _context:
539
+ """
540
+ ...
541
+
542
+ def draw_collapsible(self, context, layout):
543
+ """
544
+
545
+ :param context:
546
+ :param layout:
547
+ """
548
+ ...
549
+
550
+ def draw_preset(self, _context):
551
+ """
552
+
553
+ :param _context:
554
+ """
555
+ ...
556
+
557
+ def driver_add(self):
558
+ """ """
559
+ ...
560
+
561
+ def driver_remove(self):
562
+ """ """
563
+ ...
564
+
565
+ def get(self):
566
+ """ """
567
+ ...
568
+
569
+ def id_properties_clear(self):
570
+ """ """
571
+ ...
572
+
573
+ def id_properties_ensure(self):
574
+ """ """
575
+ ...
576
+
577
+ def id_properties_ui(self):
578
+ """ """
579
+ ...
580
+
581
+ def is_extended(self):
582
+ """ """
583
+ ...
584
+
585
+ def is_property_hidden(self):
586
+ """ """
587
+ ...
588
+
589
+ def is_property_overridable_library(self):
590
+ """ """
591
+ ...
592
+
593
+ def is_property_readonly(self):
594
+ """ """
595
+ ...
596
+
597
+ def is_property_set(self):
598
+ """ """
599
+ ...
600
+
601
+ def items(self):
602
+ """ """
603
+ ...
604
+
605
+ def keyframe_delete(self):
606
+ """ """
607
+ ...
608
+
609
+ def keyframe_insert(self):
610
+ """ """
611
+ ...
612
+
613
+ def keys(self):
614
+ """ """
615
+ ...
616
+
617
+ def path_from_id(self):
618
+ """ """
619
+ ...
142
620
 
143
- def append(self, draw_func): ...
144
- def as_pointer(self): ...
145
- def bl_rna_get_subclass(self): ...
146
- def bl_rna_get_subclass_py(self): ...
147
- def draw(self, _context): ...
148
- def draw_collapsible(self, context, layout): ...
149
- def draw_preset(self, _context): ...
150
- def driver_add(self): ...
151
- def driver_remove(self): ...
152
- def get(self): ...
153
- def id_properties_clear(self): ...
154
- def id_properties_ensure(self): ...
155
- def id_properties_ui(self): ...
156
- def is_extended(self): ...
157
- def is_property_hidden(self): ...
158
- def is_property_overridable_library(self): ...
159
- def is_property_readonly(self): ...
160
- def is_property_set(self): ...
161
- def items(self): ...
162
- def keyframe_delete(self): ...
163
- def keyframe_insert(self): ...
164
- def keys(self): ...
165
- def path_from_id(self): ...
166
621
  def path_menu(
167
622
  self,
168
623
  searchpaths,
@@ -173,45 +628,178 @@ class GRAPH_MT_delete(bpy_types.Menu, bpy_types._GenericUI):
173
628
  filter_path,
174
629
  display_name,
175
630
  add_operator,
176
- ): ...
177
- def path_resolve(self): ...
178
- def pop(self): ...
179
- def prepend(self, draw_func): ...
180
- def property_overridable_library_set(self): ...
181
- def property_unset(self): ...
182
- def remove(self, draw_func): ...
183
- def type_recast(self): ...
184
- def values(self): ...
185
-
186
- class GRAPH_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
631
+ ):
632
+ """
633
+
634
+ :param searchpaths:
635
+ :param operator:
636
+ :param props_default:
637
+ :param prop_filepath:
638
+ :param filter_ext:
639
+ :param filter_path:
640
+ :param display_name:
641
+ :param add_operator:
642
+ """
643
+ ...
644
+
645
+ def path_resolve(self):
646
+ """ """
647
+ ...
648
+
649
+ def pop(self):
650
+ """ """
651
+ ...
652
+
653
+ def prepend(self, draw_func):
654
+ """
655
+
656
+ :param draw_func:
657
+ """
658
+ ...
659
+
660
+ def property_overridable_library_set(self):
661
+ """ """
662
+ ...
663
+
664
+ def property_unset(self):
665
+ """ """
666
+ ...
667
+
668
+ def remove(self, draw_func):
669
+ """
670
+
671
+ :param draw_func:
672
+ """
673
+ ...
674
+
675
+ def type_recast(self):
676
+ """ """
677
+ ...
678
+
679
+ def values(self):
680
+ """ """
681
+ ...
682
+
683
+ class GRAPH_MT_editor_menus(bpy_types._GenericUI):
684
+ """ """
685
+
187
686
  bl_idname: typing.Any
687
+ """ """
688
+
188
689
  bl_label: typing.Any
690
+ """ """
691
+
189
692
  bl_rna: typing.Any
693
+ """ """
694
+
190
695
  id_data: typing.Any
696
+ """ """
697
+
698
+ def append(self, draw_func):
699
+ """
700
+
701
+ :param draw_func:
702
+ """
703
+ ...
704
+
705
+ def as_pointer(self):
706
+ """ """
707
+ ...
708
+
709
+ def bl_rna_get_subclass(self):
710
+ """ """
711
+ ...
712
+
713
+ def bl_rna_get_subclass_py(self):
714
+ """ """
715
+ ...
716
+
717
+ def draw(self, context):
718
+ """
719
+
720
+ :param context:
721
+ """
722
+ ...
723
+
724
+ def draw_collapsible(self, context, layout):
725
+ """
726
+
727
+ :param context:
728
+ :param layout:
729
+ """
730
+ ...
731
+
732
+ def draw_preset(self, _context):
733
+ """
734
+
735
+ :param _context:
736
+ """
737
+ ...
738
+
739
+ def driver_add(self):
740
+ """ """
741
+ ...
742
+
743
+ def driver_remove(self):
744
+ """ """
745
+ ...
746
+
747
+ def get(self):
748
+ """ """
749
+ ...
750
+
751
+ def id_properties_clear(self):
752
+ """ """
753
+ ...
754
+
755
+ def id_properties_ensure(self):
756
+ """ """
757
+ ...
758
+
759
+ def id_properties_ui(self):
760
+ """ """
761
+ ...
762
+
763
+ def is_extended(self):
764
+ """ """
765
+ ...
766
+
767
+ def is_property_hidden(self):
768
+ """ """
769
+ ...
770
+
771
+ def is_property_overridable_library(self):
772
+ """ """
773
+ ...
774
+
775
+ def is_property_readonly(self):
776
+ """ """
777
+ ...
778
+
779
+ def is_property_set(self):
780
+ """ """
781
+ ...
782
+
783
+ def items(self):
784
+ """ """
785
+ ...
786
+
787
+ def keyframe_delete(self):
788
+ """ """
789
+ ...
790
+
791
+ def keyframe_insert(self):
792
+ """ """
793
+ ...
794
+
795
+ def keys(self):
796
+ """ """
797
+ ...
798
+
799
+ def path_from_id(self):
800
+ """ """
801
+ ...
191
802
 
192
- def append(self, draw_func): ...
193
- def as_pointer(self): ...
194
- def bl_rna_get_subclass(self): ...
195
- def bl_rna_get_subclass_py(self): ...
196
- def draw(self, context): ...
197
- def draw_collapsible(self, context, layout): ...
198
- def draw_preset(self, _context): ...
199
- def driver_add(self): ...
200
- def driver_remove(self): ...
201
- def get(self): ...
202
- def id_properties_clear(self): ...
203
- def id_properties_ensure(self): ...
204
- def id_properties_ui(self): ...
205
- def is_extended(self): ...
206
- def is_property_hidden(self): ...
207
- def is_property_overridable_library(self): ...
208
- def is_property_readonly(self): ...
209
- def is_property_set(self): ...
210
- def items(self): ...
211
- def keyframe_delete(self): ...
212
- def keyframe_insert(self): ...
213
- def keys(self): ...
214
- def path_from_id(self): ...
215
803
  def path_menu(
216
804
  self,
217
805
  searchpaths,
@@ -222,44 +810,175 @@ class GRAPH_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
222
810
  filter_path,
223
811
  display_name,
224
812
  add_operator,
225
- ): ...
226
- def path_resolve(self): ...
227
- def pop(self): ...
228
- def prepend(self, draw_func): ...
229
- def property_overridable_library_set(self): ...
230
- def property_unset(self): ...
231
- def remove(self, draw_func): ...
232
- def type_recast(self): ...
233
- def values(self): ...
234
-
235
- class GRAPH_MT_key(bpy_types.Menu, bpy_types._GenericUI):
813
+ ):
814
+ """
815
+
816
+ :param searchpaths:
817
+ :param operator:
818
+ :param props_default:
819
+ :param prop_filepath:
820
+ :param filter_ext:
821
+ :param filter_path:
822
+ :param display_name:
823
+ :param add_operator:
824
+ """
825
+ ...
826
+
827
+ def path_resolve(self):
828
+ """ """
829
+ ...
830
+
831
+ def pop(self):
832
+ """ """
833
+ ...
834
+
835
+ def prepend(self, draw_func):
836
+ """
837
+
838
+ :param draw_func:
839
+ """
840
+ ...
841
+
842
+ def property_overridable_library_set(self):
843
+ """ """
844
+ ...
845
+
846
+ def property_unset(self):
847
+ """ """
848
+ ...
849
+
850
+ def remove(self, draw_func):
851
+ """
852
+
853
+ :param draw_func:
854
+ """
855
+ ...
856
+
857
+ def type_recast(self):
858
+ """ """
859
+ ...
860
+
861
+ def values(self):
862
+ """ """
863
+ ...
864
+
865
+ class GRAPH_MT_key(bpy_types._GenericUI):
866
+ """ """
867
+
236
868
  bl_label: typing.Any
869
+ """ """
870
+
237
871
  bl_rna: typing.Any
872
+ """ """
873
+
238
874
  id_data: typing.Any
875
+ """ """
876
+
877
+ def append(self, draw_func):
878
+ """
879
+
880
+ :param draw_func:
881
+ """
882
+ ...
883
+
884
+ def as_pointer(self):
885
+ """ """
886
+ ...
887
+
888
+ def bl_rna_get_subclass(self):
889
+ """ """
890
+ ...
891
+
892
+ def bl_rna_get_subclass_py(self):
893
+ """ """
894
+ ...
895
+
896
+ def draw(self, _context):
897
+ """
898
+
899
+ :param _context:
900
+ """
901
+ ...
902
+
903
+ def draw_collapsible(self, context, layout):
904
+ """
905
+
906
+ :param context:
907
+ :param layout:
908
+ """
909
+ ...
910
+
911
+ def draw_preset(self, _context):
912
+ """
913
+
914
+ :param _context:
915
+ """
916
+ ...
917
+
918
+ def driver_add(self):
919
+ """ """
920
+ ...
921
+
922
+ def driver_remove(self):
923
+ """ """
924
+ ...
925
+
926
+ def get(self):
927
+ """ """
928
+ ...
929
+
930
+ def id_properties_clear(self):
931
+ """ """
932
+ ...
933
+
934
+ def id_properties_ensure(self):
935
+ """ """
936
+ ...
937
+
938
+ def id_properties_ui(self):
939
+ """ """
940
+ ...
941
+
942
+ def is_extended(self):
943
+ """ """
944
+ ...
945
+
946
+ def is_property_hidden(self):
947
+ """ """
948
+ ...
949
+
950
+ def is_property_overridable_library(self):
951
+ """ """
952
+ ...
953
+
954
+ def is_property_readonly(self):
955
+ """ """
956
+ ...
957
+
958
+ def is_property_set(self):
959
+ """ """
960
+ ...
961
+
962
+ def items(self):
963
+ """ """
964
+ ...
965
+
966
+ def keyframe_delete(self):
967
+ """ """
968
+ ...
969
+
970
+ def keyframe_insert(self):
971
+ """ """
972
+ ...
973
+
974
+ def keys(self):
975
+ """ """
976
+ ...
977
+
978
+ def path_from_id(self):
979
+ """ """
980
+ ...
239
981
 
240
- def append(self, draw_func): ...
241
- def as_pointer(self): ...
242
- def bl_rna_get_subclass(self): ...
243
- def bl_rna_get_subclass_py(self): ...
244
- def draw(self, _context): ...
245
- def draw_collapsible(self, context, layout): ...
246
- def draw_preset(self, _context): ...
247
- def driver_add(self): ...
248
- def driver_remove(self): ...
249
- def get(self): ...
250
- def id_properties_clear(self): ...
251
- def id_properties_ensure(self): ...
252
- def id_properties_ui(self): ...
253
- def is_extended(self): ...
254
- def is_property_hidden(self): ...
255
- def is_property_overridable_library(self): ...
256
- def is_property_readonly(self): ...
257
- def is_property_set(self): ...
258
- def items(self): ...
259
- def keyframe_delete(self): ...
260
- def keyframe_insert(self): ...
261
- def keys(self): ...
262
- def path_from_id(self): ...
263
982
  def path_menu(
264
983
  self,
265
984
  searchpaths,
@@ -270,140 +989,175 @@ class GRAPH_MT_key(bpy_types.Menu, bpy_types._GenericUI):
270
989
  filter_path,
271
990
  display_name,
272
991
  add_operator,
273
- ): ...
274
- def path_resolve(self): ...
275
- def pop(self): ...
276
- def prepend(self, draw_func): ...
277
- def property_overridable_library_set(self): ...
278
- def property_unset(self): ...
279
- def remove(self, draw_func): ...
280
- def type_recast(self): ...
281
- def values(self): ...
282
-
283
- class GRAPH_MT_key_blending(bpy_types.Menu, bpy_types._GenericUI):
992
+ ):
993
+ """
994
+
995
+ :param searchpaths:
996
+ :param operator:
997
+ :param props_default:
998
+ :param prop_filepath:
999
+ :param filter_ext:
1000
+ :param filter_path:
1001
+ :param display_name:
1002
+ :param add_operator:
1003
+ """
1004
+ ...
1005
+
1006
+ def path_resolve(self):
1007
+ """ """
1008
+ ...
1009
+
1010
+ def pop(self):
1011
+ """ """
1012
+ ...
1013
+
1014
+ def prepend(self, draw_func):
1015
+ """
1016
+
1017
+ :param draw_func:
1018
+ """
1019
+ ...
1020
+
1021
+ def property_overridable_library_set(self):
1022
+ """ """
1023
+ ...
1024
+
1025
+ def property_unset(self):
1026
+ """ """
1027
+ ...
1028
+
1029
+ def remove(self, draw_func):
1030
+ """
1031
+
1032
+ :param draw_func:
1033
+ """
1034
+ ...
1035
+
1036
+ def type_recast(self):
1037
+ """ """
1038
+ ...
1039
+
1040
+ def values(self):
1041
+ """ """
1042
+ ...
1043
+
1044
+ class GRAPH_MT_key_blending(bpy_types._GenericUI):
1045
+ """ """
1046
+
284
1047
  bl_label: typing.Any
1048
+ """ """
1049
+
285
1050
  bl_rna: typing.Any
1051
+ """ """
1052
+
286
1053
  id_data: typing.Any
1054
+ """ """
287
1055
 
288
- def append(self, draw_func): ...
289
- def as_pointer(self): ...
290
- def bl_rna_get_subclass(self): ...
291
- def bl_rna_get_subclass_py(self): ...
292
- def draw(self, _context): ...
293
- def draw_collapsible(self, context, layout): ...
294
- def draw_preset(self, _context): ...
295
- def driver_add(self): ...
296
- def driver_remove(self): ...
297
- def get(self): ...
298
- def id_properties_clear(self): ...
299
- def id_properties_ensure(self): ...
300
- def id_properties_ui(self): ...
301
- def is_extended(self): ...
302
- def is_property_hidden(self): ...
303
- def is_property_overridable_library(self): ...
304
- def is_property_readonly(self): ...
305
- def is_property_set(self): ...
306
- def items(self): ...
307
- def keyframe_delete(self): ...
308
- def keyframe_insert(self): ...
309
- def keys(self): ...
310
- def path_from_id(self): ...
311
- def path_menu(
312
- self,
313
- searchpaths,
314
- operator,
315
- props_default,
316
- prop_filepath,
317
- filter_ext,
318
- filter_path,
319
- display_name,
320
- add_operator,
321
- ): ...
322
- def path_resolve(self): ...
323
- def pop(self): ...
324
- def prepend(self, draw_func): ...
325
- def property_overridable_library_set(self): ...
326
- def property_unset(self): ...
327
- def remove(self, draw_func): ...
328
- def type_recast(self): ...
329
- def values(self): ...
330
-
331
- class GRAPH_MT_key_density(bpy_types.Menu, bpy_types._GenericUI):
332
- bl_label: typing.Any
333
- bl_rna: typing.Any
334
- id_data: typing.Any
1056
+ def append(self, draw_func):
1057
+ """
335
1058
 
336
- def append(self, draw_func): ...
337
- def as_pointer(self): ...
338
- def bl_rna_get_subclass(self): ...
339
- def bl_rna_get_subclass_py(self): ...
340
- def draw(self, _context): ...
341
- def draw_collapsible(self, context, layout): ...
342
- def draw_preset(self, _context): ...
343
- def driver_add(self): ...
344
- def driver_remove(self): ...
345
- def get(self): ...
346
- def id_properties_clear(self): ...
347
- def id_properties_ensure(self): ...
348
- def id_properties_ui(self): ...
349
- def is_extended(self): ...
350
- def is_property_hidden(self): ...
351
- def is_property_overridable_library(self): ...
352
- def is_property_readonly(self): ...
353
- def is_property_set(self): ...
354
- def items(self): ...
355
- def keyframe_delete(self): ...
356
- def keyframe_insert(self): ...
357
- def keys(self): ...
358
- def path_from_id(self): ...
359
- def path_menu(
360
- self,
361
- searchpaths,
362
- operator,
363
- props_default,
364
- prop_filepath,
365
- filter_ext,
366
- filter_path,
367
- display_name,
368
- add_operator,
369
- ): ...
370
- def path_resolve(self): ...
371
- def pop(self): ...
372
- def prepend(self, draw_func): ...
373
- def property_overridable_library_set(self): ...
374
- def property_unset(self): ...
375
- def remove(self, draw_func): ...
376
- def type_recast(self): ...
377
- def values(self): ...
378
-
379
- class GRAPH_MT_key_smoothing(bpy_types.Menu, bpy_types._GenericUI):
380
- bl_label: typing.Any
381
- bl_rna: typing.Any
382
- id_data: typing.Any
1059
+ :param draw_func:
1060
+ """
1061
+ ...
1062
+
1063
+ def as_pointer(self):
1064
+ """ """
1065
+ ...
1066
+
1067
+ def bl_rna_get_subclass(self):
1068
+ """ """
1069
+ ...
1070
+
1071
+ def bl_rna_get_subclass_py(self):
1072
+ """ """
1073
+ ...
1074
+
1075
+ def draw(self, _context):
1076
+ """
1077
+
1078
+ :param _context:
1079
+ """
1080
+ ...
1081
+
1082
+ def draw_collapsible(self, context, layout):
1083
+ """
1084
+
1085
+ :param context:
1086
+ :param layout:
1087
+ """
1088
+ ...
1089
+
1090
+ def draw_preset(self, _context):
1091
+ """
1092
+
1093
+ :param _context:
1094
+ """
1095
+ ...
1096
+
1097
+ def driver_add(self):
1098
+ """ """
1099
+ ...
1100
+
1101
+ def driver_remove(self):
1102
+ """ """
1103
+ ...
1104
+
1105
+ def get(self):
1106
+ """ """
1107
+ ...
1108
+
1109
+ def id_properties_clear(self):
1110
+ """ """
1111
+ ...
1112
+
1113
+ def id_properties_ensure(self):
1114
+ """ """
1115
+ ...
1116
+
1117
+ def id_properties_ui(self):
1118
+ """ """
1119
+ ...
1120
+
1121
+ def is_extended(self):
1122
+ """ """
1123
+ ...
1124
+
1125
+ def is_property_hidden(self):
1126
+ """ """
1127
+ ...
1128
+
1129
+ def is_property_overridable_library(self):
1130
+ """ """
1131
+ ...
1132
+
1133
+ def is_property_readonly(self):
1134
+ """ """
1135
+ ...
1136
+
1137
+ def is_property_set(self):
1138
+ """ """
1139
+ ...
1140
+
1141
+ def items(self):
1142
+ """ """
1143
+ ...
1144
+
1145
+ def keyframe_delete(self):
1146
+ """ """
1147
+ ...
1148
+
1149
+ def keyframe_insert(self):
1150
+ """ """
1151
+ ...
1152
+
1153
+ def keys(self):
1154
+ """ """
1155
+ ...
1156
+
1157
+ def path_from_id(self):
1158
+ """ """
1159
+ ...
383
1160
 
384
- def append(self, draw_func): ...
385
- def as_pointer(self): ...
386
- def bl_rna_get_subclass(self): ...
387
- def bl_rna_get_subclass_py(self): ...
388
- def draw(self, _context): ...
389
- def draw_collapsible(self, context, layout): ...
390
- def draw_preset(self, _context): ...
391
- def driver_add(self): ...
392
- def driver_remove(self): ...
393
- def get(self): ...
394
- def id_properties_clear(self): ...
395
- def id_properties_ensure(self): ...
396
- def id_properties_ui(self): ...
397
- def is_extended(self): ...
398
- def is_property_hidden(self): ...
399
- def is_property_overridable_library(self): ...
400
- def is_property_readonly(self): ...
401
- def is_property_set(self): ...
402
- def items(self): ...
403
- def keyframe_delete(self): ...
404
- def keyframe_insert(self): ...
405
- def keys(self): ...
406
- def path_from_id(self): ...
407
1161
  def path_menu(
408
1162
  self,
409
1163
  searchpaths,
@@ -414,44 +1168,175 @@ class GRAPH_MT_key_smoothing(bpy_types.Menu, bpy_types._GenericUI):
414
1168
  filter_path,
415
1169
  display_name,
416
1170
  add_operator,
417
- ): ...
418
- def path_resolve(self): ...
419
- def pop(self): ...
420
- def prepend(self, draw_func): ...
421
- def property_overridable_library_set(self): ...
422
- def property_unset(self): ...
423
- def remove(self, draw_func): ...
424
- def type_recast(self): ...
425
- def values(self): ...
426
-
427
- class GRAPH_MT_key_snap(bpy_types.Menu, bpy_types._GenericUI):
1171
+ ):
1172
+ """
1173
+
1174
+ :param searchpaths:
1175
+ :param operator:
1176
+ :param props_default:
1177
+ :param prop_filepath:
1178
+ :param filter_ext:
1179
+ :param filter_path:
1180
+ :param display_name:
1181
+ :param add_operator:
1182
+ """
1183
+ ...
1184
+
1185
+ def path_resolve(self):
1186
+ """ """
1187
+ ...
1188
+
1189
+ def pop(self):
1190
+ """ """
1191
+ ...
1192
+
1193
+ def prepend(self, draw_func):
1194
+ """
1195
+
1196
+ :param draw_func:
1197
+ """
1198
+ ...
1199
+
1200
+ def property_overridable_library_set(self):
1201
+ """ """
1202
+ ...
1203
+
1204
+ def property_unset(self):
1205
+ """ """
1206
+ ...
1207
+
1208
+ def remove(self, draw_func):
1209
+ """
1210
+
1211
+ :param draw_func:
1212
+ """
1213
+ ...
1214
+
1215
+ def type_recast(self):
1216
+ """ """
1217
+ ...
1218
+
1219
+ def values(self):
1220
+ """ """
1221
+ ...
1222
+
1223
+ class GRAPH_MT_key_density(bpy_types._GenericUI):
1224
+ """ """
1225
+
428
1226
  bl_label: typing.Any
1227
+ """ """
1228
+
429
1229
  bl_rna: typing.Any
1230
+ """ """
1231
+
430
1232
  id_data: typing.Any
1233
+ """ """
1234
+
1235
+ def append(self, draw_func):
1236
+ """
1237
+
1238
+ :param draw_func:
1239
+ """
1240
+ ...
1241
+
1242
+ def as_pointer(self):
1243
+ """ """
1244
+ ...
1245
+
1246
+ def bl_rna_get_subclass(self):
1247
+ """ """
1248
+ ...
1249
+
1250
+ def bl_rna_get_subclass_py(self):
1251
+ """ """
1252
+ ...
1253
+
1254
+ def draw(self, _context):
1255
+ """
1256
+
1257
+ :param _context:
1258
+ """
1259
+ ...
1260
+
1261
+ def draw_collapsible(self, context, layout):
1262
+ """
1263
+
1264
+ :param context:
1265
+ :param layout:
1266
+ """
1267
+ ...
1268
+
1269
+ def draw_preset(self, _context):
1270
+ """
1271
+
1272
+ :param _context:
1273
+ """
1274
+ ...
1275
+
1276
+ def driver_add(self):
1277
+ """ """
1278
+ ...
1279
+
1280
+ def driver_remove(self):
1281
+ """ """
1282
+ ...
1283
+
1284
+ def get(self):
1285
+ """ """
1286
+ ...
1287
+
1288
+ def id_properties_clear(self):
1289
+ """ """
1290
+ ...
1291
+
1292
+ def id_properties_ensure(self):
1293
+ """ """
1294
+ ...
1295
+
1296
+ def id_properties_ui(self):
1297
+ """ """
1298
+ ...
1299
+
1300
+ def is_extended(self):
1301
+ """ """
1302
+ ...
1303
+
1304
+ def is_property_hidden(self):
1305
+ """ """
1306
+ ...
1307
+
1308
+ def is_property_overridable_library(self):
1309
+ """ """
1310
+ ...
1311
+
1312
+ def is_property_readonly(self):
1313
+ """ """
1314
+ ...
1315
+
1316
+ def is_property_set(self):
1317
+ """ """
1318
+ ...
1319
+
1320
+ def items(self):
1321
+ """ """
1322
+ ...
1323
+
1324
+ def keyframe_delete(self):
1325
+ """ """
1326
+ ...
1327
+
1328
+ def keyframe_insert(self):
1329
+ """ """
1330
+ ...
1331
+
1332
+ def keys(self):
1333
+ """ """
1334
+ ...
1335
+
1336
+ def path_from_id(self):
1337
+ """ """
1338
+ ...
431
1339
 
432
- def append(self, draw_func): ...
433
- def as_pointer(self): ...
434
- def bl_rna_get_subclass(self): ...
435
- def bl_rna_get_subclass_py(self): ...
436
- def draw(self, _context): ...
437
- def draw_collapsible(self, context, layout): ...
438
- def draw_preset(self, _context): ...
439
- def driver_add(self): ...
440
- def driver_remove(self): ...
441
- def get(self): ...
442
- def id_properties_clear(self): ...
443
- def id_properties_ensure(self): ...
444
- def id_properties_ui(self): ...
445
- def is_extended(self): ...
446
- def is_property_hidden(self): ...
447
- def is_property_overridable_library(self): ...
448
- def is_property_readonly(self): ...
449
- def is_property_set(self): ...
450
- def items(self): ...
451
- def keyframe_delete(self): ...
452
- def keyframe_insert(self): ...
453
- def keys(self): ...
454
- def path_from_id(self): ...
455
1340
  def path_menu(
456
1341
  self,
457
1342
  searchpaths,
@@ -462,44 +1347,175 @@ class GRAPH_MT_key_snap(bpy_types.Menu, bpy_types._GenericUI):
462
1347
  filter_path,
463
1348
  display_name,
464
1349
  add_operator,
465
- ): ...
466
- def path_resolve(self): ...
467
- def pop(self): ...
468
- def prepend(self, draw_func): ...
469
- def property_overridable_library_set(self): ...
470
- def property_unset(self): ...
471
- def remove(self, draw_func): ...
472
- def type_recast(self): ...
473
- def values(self): ...
474
-
475
- class GRAPH_MT_key_transform(bpy_types.Menu, bpy_types._GenericUI):
1350
+ ):
1351
+ """
1352
+
1353
+ :param searchpaths:
1354
+ :param operator:
1355
+ :param props_default:
1356
+ :param prop_filepath:
1357
+ :param filter_ext:
1358
+ :param filter_path:
1359
+ :param display_name:
1360
+ :param add_operator:
1361
+ """
1362
+ ...
1363
+
1364
+ def path_resolve(self):
1365
+ """ """
1366
+ ...
1367
+
1368
+ def pop(self):
1369
+ """ """
1370
+ ...
1371
+
1372
+ def prepend(self, draw_func):
1373
+ """
1374
+
1375
+ :param draw_func:
1376
+ """
1377
+ ...
1378
+
1379
+ def property_overridable_library_set(self):
1380
+ """ """
1381
+ ...
1382
+
1383
+ def property_unset(self):
1384
+ """ """
1385
+ ...
1386
+
1387
+ def remove(self, draw_func):
1388
+ """
1389
+
1390
+ :param draw_func:
1391
+ """
1392
+ ...
1393
+
1394
+ def type_recast(self):
1395
+ """ """
1396
+ ...
1397
+
1398
+ def values(self):
1399
+ """ """
1400
+ ...
1401
+
1402
+ class GRAPH_MT_key_smoothing(bpy_types._GenericUI):
1403
+ """ """
1404
+
476
1405
  bl_label: typing.Any
1406
+ """ """
1407
+
477
1408
  bl_rna: typing.Any
1409
+ """ """
1410
+
478
1411
  id_data: typing.Any
1412
+ """ """
1413
+
1414
+ def append(self, draw_func):
1415
+ """
1416
+
1417
+ :param draw_func:
1418
+ """
1419
+ ...
1420
+
1421
+ def as_pointer(self):
1422
+ """ """
1423
+ ...
1424
+
1425
+ def bl_rna_get_subclass(self):
1426
+ """ """
1427
+ ...
1428
+
1429
+ def bl_rna_get_subclass_py(self):
1430
+ """ """
1431
+ ...
1432
+
1433
+ def draw(self, _context):
1434
+ """
1435
+
1436
+ :param _context:
1437
+ """
1438
+ ...
1439
+
1440
+ def draw_collapsible(self, context, layout):
1441
+ """
1442
+
1443
+ :param context:
1444
+ :param layout:
1445
+ """
1446
+ ...
1447
+
1448
+ def draw_preset(self, _context):
1449
+ """
1450
+
1451
+ :param _context:
1452
+ """
1453
+ ...
1454
+
1455
+ def driver_add(self):
1456
+ """ """
1457
+ ...
1458
+
1459
+ def driver_remove(self):
1460
+ """ """
1461
+ ...
1462
+
1463
+ def get(self):
1464
+ """ """
1465
+ ...
1466
+
1467
+ def id_properties_clear(self):
1468
+ """ """
1469
+ ...
1470
+
1471
+ def id_properties_ensure(self):
1472
+ """ """
1473
+ ...
1474
+
1475
+ def id_properties_ui(self):
1476
+ """ """
1477
+ ...
1478
+
1479
+ def is_extended(self):
1480
+ """ """
1481
+ ...
1482
+
1483
+ def is_property_hidden(self):
1484
+ """ """
1485
+ ...
1486
+
1487
+ def is_property_overridable_library(self):
1488
+ """ """
1489
+ ...
1490
+
1491
+ def is_property_readonly(self):
1492
+ """ """
1493
+ ...
1494
+
1495
+ def is_property_set(self):
1496
+ """ """
1497
+ ...
1498
+
1499
+ def items(self):
1500
+ """ """
1501
+ ...
1502
+
1503
+ def keyframe_delete(self):
1504
+ """ """
1505
+ ...
1506
+
1507
+ def keyframe_insert(self):
1508
+ """ """
1509
+ ...
1510
+
1511
+ def keys(self):
1512
+ """ """
1513
+ ...
1514
+
1515
+ def path_from_id(self):
1516
+ """ """
1517
+ ...
479
1518
 
480
- def append(self, draw_func): ...
481
- def as_pointer(self): ...
482
- def bl_rna_get_subclass(self): ...
483
- def bl_rna_get_subclass_py(self): ...
484
- def draw(self, _context): ...
485
- def draw_collapsible(self, context, layout): ...
486
- def draw_preset(self, _context): ...
487
- def driver_add(self): ...
488
- def driver_remove(self): ...
489
- def get(self): ...
490
- def id_properties_clear(self): ...
491
- def id_properties_ensure(self): ...
492
- def id_properties_ui(self): ...
493
- def is_extended(self): ...
494
- def is_property_hidden(self): ...
495
- def is_property_overridable_library(self): ...
496
- def is_property_readonly(self): ...
497
- def is_property_set(self): ...
498
- def items(self): ...
499
- def keyframe_delete(self): ...
500
- def keyframe_insert(self): ...
501
- def keys(self): ...
502
- def path_from_id(self): ...
503
1519
  def path_menu(
504
1520
  self,
505
1521
  searchpaths,
@@ -510,44 +1526,175 @@ class GRAPH_MT_key_transform(bpy_types.Menu, bpy_types._GenericUI):
510
1526
  filter_path,
511
1527
  display_name,
512
1528
  add_operator,
513
- ): ...
514
- def path_resolve(self): ...
515
- def pop(self): ...
516
- def prepend(self, draw_func): ...
517
- def property_overridable_library_set(self): ...
518
- def property_unset(self): ...
519
- def remove(self, draw_func): ...
520
- def type_recast(self): ...
521
- def values(self): ...
522
-
523
- class GRAPH_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
1529
+ ):
1530
+ """
1531
+
1532
+ :param searchpaths:
1533
+ :param operator:
1534
+ :param props_default:
1535
+ :param prop_filepath:
1536
+ :param filter_ext:
1537
+ :param filter_path:
1538
+ :param display_name:
1539
+ :param add_operator:
1540
+ """
1541
+ ...
1542
+
1543
+ def path_resolve(self):
1544
+ """ """
1545
+ ...
1546
+
1547
+ def pop(self):
1548
+ """ """
1549
+ ...
1550
+
1551
+ def prepend(self, draw_func):
1552
+ """
1553
+
1554
+ :param draw_func:
1555
+ """
1556
+ ...
1557
+
1558
+ def property_overridable_library_set(self):
1559
+ """ """
1560
+ ...
1561
+
1562
+ def property_unset(self):
1563
+ """ """
1564
+ ...
1565
+
1566
+ def remove(self, draw_func):
1567
+ """
1568
+
1569
+ :param draw_func:
1570
+ """
1571
+ ...
1572
+
1573
+ def type_recast(self):
1574
+ """ """
1575
+ ...
1576
+
1577
+ def values(self):
1578
+ """ """
1579
+ ...
1580
+
1581
+ class GRAPH_MT_key_snap(bpy_types._GenericUI):
1582
+ """ """
1583
+
524
1584
  bl_label: typing.Any
1585
+ """ """
1586
+
525
1587
  bl_rna: typing.Any
1588
+ """ """
1589
+
526
1590
  id_data: typing.Any
1591
+ """ """
1592
+
1593
+ def append(self, draw_func):
1594
+ """
1595
+
1596
+ :param draw_func:
1597
+ """
1598
+ ...
1599
+
1600
+ def as_pointer(self):
1601
+ """ """
1602
+ ...
1603
+
1604
+ def bl_rna_get_subclass(self):
1605
+ """ """
1606
+ ...
1607
+
1608
+ def bl_rna_get_subclass_py(self):
1609
+ """ """
1610
+ ...
1611
+
1612
+ def draw(self, _context):
1613
+ """
1614
+
1615
+ :param _context:
1616
+ """
1617
+ ...
1618
+
1619
+ def draw_collapsible(self, context, layout):
1620
+ """
1621
+
1622
+ :param context:
1623
+ :param layout:
1624
+ """
1625
+ ...
1626
+
1627
+ def draw_preset(self, _context):
1628
+ """
1629
+
1630
+ :param _context:
1631
+ """
1632
+ ...
1633
+
1634
+ def driver_add(self):
1635
+ """ """
1636
+ ...
1637
+
1638
+ def driver_remove(self):
1639
+ """ """
1640
+ ...
1641
+
1642
+ def get(self):
1643
+ """ """
1644
+ ...
1645
+
1646
+ def id_properties_clear(self):
1647
+ """ """
1648
+ ...
1649
+
1650
+ def id_properties_ensure(self):
1651
+ """ """
1652
+ ...
1653
+
1654
+ def id_properties_ui(self):
1655
+ """ """
1656
+ ...
1657
+
1658
+ def is_extended(self):
1659
+ """ """
1660
+ ...
1661
+
1662
+ def is_property_hidden(self):
1663
+ """ """
1664
+ ...
1665
+
1666
+ def is_property_overridable_library(self):
1667
+ """ """
1668
+ ...
1669
+
1670
+ def is_property_readonly(self):
1671
+ """ """
1672
+ ...
1673
+
1674
+ def is_property_set(self):
1675
+ """ """
1676
+ ...
1677
+
1678
+ def items(self):
1679
+ """ """
1680
+ ...
1681
+
1682
+ def keyframe_delete(self):
1683
+ """ """
1684
+ ...
1685
+
1686
+ def keyframe_insert(self):
1687
+ """ """
1688
+ ...
1689
+
1690
+ def keys(self):
1691
+ """ """
1692
+ ...
1693
+
1694
+ def path_from_id(self):
1695
+ """ """
1696
+ ...
527
1697
 
528
- def append(self, draw_func): ...
529
- def as_pointer(self): ...
530
- def bl_rna_get_subclass(self): ...
531
- def bl_rna_get_subclass_py(self): ...
532
- def draw(self, context): ...
533
- def draw_collapsible(self, context, layout): ...
534
- def draw_preset(self, _context): ...
535
- def driver_add(self): ...
536
- def driver_remove(self): ...
537
- def get(self): ...
538
- def id_properties_clear(self): ...
539
- def id_properties_ensure(self): ...
540
- def id_properties_ui(self): ...
541
- def is_extended(self): ...
542
- def is_property_hidden(self): ...
543
- def is_property_overridable_library(self): ...
544
- def is_property_readonly(self): ...
545
- def is_property_set(self): ...
546
- def items(self): ...
547
- def keyframe_delete(self): ...
548
- def keyframe_insert(self): ...
549
- def keys(self): ...
550
- def path_from_id(self): ...
551
1698
  def path_menu(
552
1699
  self,
553
1700
  searchpaths,
@@ -558,44 +1705,175 @@ class GRAPH_MT_marker(bpy_types.Menu, bpy_types._GenericUI):
558
1705
  filter_path,
559
1706
  display_name,
560
1707
  add_operator,
561
- ): ...
562
- def path_resolve(self): ...
563
- def pop(self): ...
564
- def prepend(self, draw_func): ...
565
- def property_overridable_library_set(self): ...
566
- def property_unset(self): ...
567
- def remove(self, draw_func): ...
568
- def type_recast(self): ...
569
- def values(self): ...
570
-
571
- class GRAPH_MT_pivot_pie(bpy_types.Menu, bpy_types._GenericUI):
1708
+ ):
1709
+ """
1710
+
1711
+ :param searchpaths:
1712
+ :param operator:
1713
+ :param props_default:
1714
+ :param prop_filepath:
1715
+ :param filter_ext:
1716
+ :param filter_path:
1717
+ :param display_name:
1718
+ :param add_operator:
1719
+ """
1720
+ ...
1721
+
1722
+ def path_resolve(self):
1723
+ """ """
1724
+ ...
1725
+
1726
+ def pop(self):
1727
+ """ """
1728
+ ...
1729
+
1730
+ def prepend(self, draw_func):
1731
+ """
1732
+
1733
+ :param draw_func:
1734
+ """
1735
+ ...
1736
+
1737
+ def property_overridable_library_set(self):
1738
+ """ """
1739
+ ...
1740
+
1741
+ def property_unset(self):
1742
+ """ """
1743
+ ...
1744
+
1745
+ def remove(self, draw_func):
1746
+ """
1747
+
1748
+ :param draw_func:
1749
+ """
1750
+ ...
1751
+
1752
+ def type_recast(self):
1753
+ """ """
1754
+ ...
1755
+
1756
+ def values(self):
1757
+ """ """
1758
+ ...
1759
+
1760
+ class GRAPH_MT_key_transform(bpy_types._GenericUI):
1761
+ """ """
1762
+
572
1763
  bl_label: typing.Any
1764
+ """ """
1765
+
573
1766
  bl_rna: typing.Any
1767
+ """ """
1768
+
574
1769
  id_data: typing.Any
1770
+ """ """
1771
+
1772
+ def append(self, draw_func):
1773
+ """
1774
+
1775
+ :param draw_func:
1776
+ """
1777
+ ...
1778
+
1779
+ def as_pointer(self):
1780
+ """ """
1781
+ ...
1782
+
1783
+ def bl_rna_get_subclass(self):
1784
+ """ """
1785
+ ...
1786
+
1787
+ def bl_rna_get_subclass_py(self):
1788
+ """ """
1789
+ ...
1790
+
1791
+ def draw(self, _context):
1792
+ """
1793
+
1794
+ :param _context:
1795
+ """
1796
+ ...
1797
+
1798
+ def draw_collapsible(self, context, layout):
1799
+ """
1800
+
1801
+ :param context:
1802
+ :param layout:
1803
+ """
1804
+ ...
1805
+
1806
+ def draw_preset(self, _context):
1807
+ """
1808
+
1809
+ :param _context:
1810
+ """
1811
+ ...
1812
+
1813
+ def driver_add(self):
1814
+ """ """
1815
+ ...
1816
+
1817
+ def driver_remove(self):
1818
+ """ """
1819
+ ...
1820
+
1821
+ def get(self):
1822
+ """ """
1823
+ ...
1824
+
1825
+ def id_properties_clear(self):
1826
+ """ """
1827
+ ...
1828
+
1829
+ def id_properties_ensure(self):
1830
+ """ """
1831
+ ...
1832
+
1833
+ def id_properties_ui(self):
1834
+ """ """
1835
+ ...
1836
+
1837
+ def is_extended(self):
1838
+ """ """
1839
+ ...
1840
+
1841
+ def is_property_hidden(self):
1842
+ """ """
1843
+ ...
1844
+
1845
+ def is_property_overridable_library(self):
1846
+ """ """
1847
+ ...
1848
+
1849
+ def is_property_readonly(self):
1850
+ """ """
1851
+ ...
1852
+
1853
+ def is_property_set(self):
1854
+ """ """
1855
+ ...
1856
+
1857
+ def items(self):
1858
+ """ """
1859
+ ...
1860
+
1861
+ def keyframe_delete(self):
1862
+ """ """
1863
+ ...
1864
+
1865
+ def keyframe_insert(self):
1866
+ """ """
1867
+ ...
1868
+
1869
+ def keys(self):
1870
+ """ """
1871
+ ...
1872
+
1873
+ def path_from_id(self):
1874
+ """ """
1875
+ ...
575
1876
 
576
- def append(self, draw_func): ...
577
- def as_pointer(self): ...
578
- def bl_rna_get_subclass(self): ...
579
- def bl_rna_get_subclass_py(self): ...
580
- def draw(self, context): ...
581
- def draw_collapsible(self, context, layout): ...
582
- def draw_preset(self, _context): ...
583
- def driver_add(self): ...
584
- def driver_remove(self): ...
585
- def get(self): ...
586
- def id_properties_clear(self): ...
587
- def id_properties_ensure(self): ...
588
- def id_properties_ui(self): ...
589
- def is_extended(self): ...
590
- def is_property_hidden(self): ...
591
- def is_property_overridable_library(self): ...
592
- def is_property_readonly(self): ...
593
- def is_property_set(self): ...
594
- def items(self): ...
595
- def keyframe_delete(self): ...
596
- def keyframe_insert(self): ...
597
- def keys(self): ...
598
- def path_from_id(self): ...
599
1877
  def path_menu(
600
1878
  self,
601
1879
  searchpaths,
@@ -606,44 +1884,175 @@ class GRAPH_MT_pivot_pie(bpy_types.Menu, bpy_types._GenericUI):
606
1884
  filter_path,
607
1885
  display_name,
608
1886
  add_operator,
609
- ): ...
610
- def path_resolve(self): ...
611
- def pop(self): ...
612
- def prepend(self, draw_func): ...
613
- def property_overridable_library_set(self): ...
614
- def property_unset(self): ...
615
- def remove(self, draw_func): ...
616
- def type_recast(self): ...
617
- def values(self): ...
618
-
619
- class GRAPH_MT_select(bpy_types.Menu, bpy_types._GenericUI):
1887
+ ):
1888
+ """
1889
+
1890
+ :param searchpaths:
1891
+ :param operator:
1892
+ :param props_default:
1893
+ :param prop_filepath:
1894
+ :param filter_ext:
1895
+ :param filter_path:
1896
+ :param display_name:
1897
+ :param add_operator:
1898
+ """
1899
+ ...
1900
+
1901
+ def path_resolve(self):
1902
+ """ """
1903
+ ...
1904
+
1905
+ def pop(self):
1906
+ """ """
1907
+ ...
1908
+
1909
+ def prepend(self, draw_func):
1910
+ """
1911
+
1912
+ :param draw_func:
1913
+ """
1914
+ ...
1915
+
1916
+ def property_overridable_library_set(self):
1917
+ """ """
1918
+ ...
1919
+
1920
+ def property_unset(self):
1921
+ """ """
1922
+ ...
1923
+
1924
+ def remove(self, draw_func):
1925
+ """
1926
+
1927
+ :param draw_func:
1928
+ """
1929
+ ...
1930
+
1931
+ def type_recast(self):
1932
+ """ """
1933
+ ...
1934
+
1935
+ def values(self):
1936
+ """ """
1937
+ ...
1938
+
1939
+ class GRAPH_MT_marker(bpy_types._GenericUI):
1940
+ """ """
1941
+
620
1942
  bl_label: typing.Any
1943
+ """ """
1944
+
621
1945
  bl_rna: typing.Any
1946
+ """ """
1947
+
622
1948
  id_data: typing.Any
1949
+ """ """
1950
+
1951
+ def append(self, draw_func):
1952
+ """
1953
+
1954
+ :param draw_func:
1955
+ """
1956
+ ...
1957
+
1958
+ def as_pointer(self):
1959
+ """ """
1960
+ ...
1961
+
1962
+ def bl_rna_get_subclass(self):
1963
+ """ """
1964
+ ...
1965
+
1966
+ def bl_rna_get_subclass_py(self):
1967
+ """ """
1968
+ ...
1969
+
1970
+ def draw(self, context):
1971
+ """
1972
+
1973
+ :param context:
1974
+ """
1975
+ ...
1976
+
1977
+ def draw_collapsible(self, context, layout):
1978
+ """
1979
+
1980
+ :param context:
1981
+ :param layout:
1982
+ """
1983
+ ...
1984
+
1985
+ def draw_preset(self, _context):
1986
+ """
1987
+
1988
+ :param _context:
1989
+ """
1990
+ ...
1991
+
1992
+ def driver_add(self):
1993
+ """ """
1994
+ ...
1995
+
1996
+ def driver_remove(self):
1997
+ """ """
1998
+ ...
1999
+
2000
+ def get(self):
2001
+ """ """
2002
+ ...
2003
+
2004
+ def id_properties_clear(self):
2005
+ """ """
2006
+ ...
2007
+
2008
+ def id_properties_ensure(self):
2009
+ """ """
2010
+ ...
2011
+
2012
+ def id_properties_ui(self):
2013
+ """ """
2014
+ ...
2015
+
2016
+ def is_extended(self):
2017
+ """ """
2018
+ ...
2019
+
2020
+ def is_property_hidden(self):
2021
+ """ """
2022
+ ...
2023
+
2024
+ def is_property_overridable_library(self):
2025
+ """ """
2026
+ ...
2027
+
2028
+ def is_property_readonly(self):
2029
+ """ """
2030
+ ...
2031
+
2032
+ def is_property_set(self):
2033
+ """ """
2034
+ ...
2035
+
2036
+ def items(self):
2037
+ """ """
2038
+ ...
2039
+
2040
+ def keyframe_delete(self):
2041
+ """ """
2042
+ ...
2043
+
2044
+ def keyframe_insert(self):
2045
+ """ """
2046
+ ...
2047
+
2048
+ def keys(self):
2049
+ """ """
2050
+ ...
2051
+
2052
+ def path_from_id(self):
2053
+ """ """
2054
+ ...
623
2055
 
624
- def append(self, draw_func): ...
625
- def as_pointer(self): ...
626
- def bl_rna_get_subclass(self): ...
627
- def bl_rna_get_subclass_py(self): ...
628
- def draw(self, _context): ...
629
- def draw_collapsible(self, context, layout): ...
630
- def draw_preset(self, _context): ...
631
- def driver_add(self): ...
632
- def driver_remove(self): ...
633
- def get(self): ...
634
- def id_properties_clear(self): ...
635
- def id_properties_ensure(self): ...
636
- def id_properties_ui(self): ...
637
- def is_extended(self): ...
638
- def is_property_hidden(self): ...
639
- def is_property_overridable_library(self): ...
640
- def is_property_readonly(self): ...
641
- def is_property_set(self): ...
642
- def items(self): ...
643
- def keyframe_delete(self): ...
644
- def keyframe_insert(self): ...
645
- def keys(self): ...
646
- def path_from_id(self): ...
647
2056
  def path_menu(
648
2057
  self,
649
2058
  searchpaths,
@@ -654,44 +2063,175 @@ class GRAPH_MT_select(bpy_types.Menu, bpy_types._GenericUI):
654
2063
  filter_path,
655
2064
  display_name,
656
2065
  add_operator,
657
- ): ...
658
- def path_resolve(self): ...
659
- def pop(self): ...
660
- def prepend(self, draw_func): ...
661
- def property_overridable_library_set(self): ...
662
- def property_unset(self): ...
663
- def remove(self, draw_func): ...
664
- def type_recast(self): ...
665
- def values(self): ...
666
-
667
- class GRAPH_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
668
- bl_label: typing.Any
2066
+ ):
2067
+ """
2068
+
2069
+ :param searchpaths:
2070
+ :param operator:
2071
+ :param props_default:
2072
+ :param prop_filepath:
2073
+ :param filter_ext:
2074
+ :param filter_path:
2075
+ :param display_name:
2076
+ :param add_operator:
2077
+ """
2078
+ ...
2079
+
2080
+ def path_resolve(self):
2081
+ """ """
2082
+ ...
2083
+
2084
+ def pop(self):
2085
+ """ """
2086
+ ...
2087
+
2088
+ def prepend(self, draw_func):
2089
+ """
2090
+
2091
+ :param draw_func:
2092
+ """
2093
+ ...
2094
+
2095
+ def property_overridable_library_set(self):
2096
+ """ """
2097
+ ...
2098
+
2099
+ def property_unset(self):
2100
+ """ """
2101
+ ...
2102
+
2103
+ def remove(self, draw_func):
2104
+ """
2105
+
2106
+ :param draw_func:
2107
+ """
2108
+ ...
2109
+
2110
+ def type_recast(self):
2111
+ """ """
2112
+ ...
2113
+
2114
+ def values(self):
2115
+ """ """
2116
+ ...
2117
+
2118
+ class GRAPH_MT_pivot_pie(bpy_types._GenericUI):
2119
+ """ """
2120
+
2121
+ bl_label: typing.Any
2122
+ """ """
2123
+
669
2124
  bl_rna: typing.Any
2125
+ """ """
2126
+
670
2127
  id_data: typing.Any
2128
+ """ """
2129
+
2130
+ def append(self, draw_func):
2131
+ """
2132
+
2133
+ :param draw_func:
2134
+ """
2135
+ ...
2136
+
2137
+ def as_pointer(self):
2138
+ """ """
2139
+ ...
2140
+
2141
+ def bl_rna_get_subclass(self):
2142
+ """ """
2143
+ ...
2144
+
2145
+ def bl_rna_get_subclass_py(self):
2146
+ """ """
2147
+ ...
2148
+
2149
+ def draw(self, context):
2150
+ """
2151
+
2152
+ :param context:
2153
+ """
2154
+ ...
2155
+
2156
+ def draw_collapsible(self, context, layout):
2157
+ """
2158
+
2159
+ :param context:
2160
+ :param layout:
2161
+ """
2162
+ ...
2163
+
2164
+ def draw_preset(self, _context):
2165
+ """
2166
+
2167
+ :param _context:
2168
+ """
2169
+ ...
2170
+
2171
+ def driver_add(self):
2172
+ """ """
2173
+ ...
2174
+
2175
+ def driver_remove(self):
2176
+ """ """
2177
+ ...
2178
+
2179
+ def get(self):
2180
+ """ """
2181
+ ...
2182
+
2183
+ def id_properties_clear(self):
2184
+ """ """
2185
+ ...
2186
+
2187
+ def id_properties_ensure(self):
2188
+ """ """
2189
+ ...
2190
+
2191
+ def id_properties_ui(self):
2192
+ """ """
2193
+ ...
2194
+
2195
+ def is_extended(self):
2196
+ """ """
2197
+ ...
2198
+
2199
+ def is_property_hidden(self):
2200
+ """ """
2201
+ ...
2202
+
2203
+ def is_property_overridable_library(self):
2204
+ """ """
2205
+ ...
2206
+
2207
+ def is_property_readonly(self):
2208
+ """ """
2209
+ ...
2210
+
2211
+ def is_property_set(self):
2212
+ """ """
2213
+ ...
2214
+
2215
+ def items(self):
2216
+ """ """
2217
+ ...
2218
+
2219
+ def keyframe_delete(self):
2220
+ """ """
2221
+ ...
2222
+
2223
+ def keyframe_insert(self):
2224
+ """ """
2225
+ ...
2226
+
2227
+ def keys(self):
2228
+ """ """
2229
+ ...
2230
+
2231
+ def path_from_id(self):
2232
+ """ """
2233
+ ...
671
2234
 
672
- def append(self, draw_func): ...
673
- def as_pointer(self): ...
674
- def bl_rna_get_subclass(self): ...
675
- def bl_rna_get_subclass_py(self): ...
676
- def draw(self, _context): ...
677
- def draw_collapsible(self, context, layout): ...
678
- def draw_preset(self, _context): ...
679
- def driver_add(self): ...
680
- def driver_remove(self): ...
681
- def get(self): ...
682
- def id_properties_clear(self): ...
683
- def id_properties_ensure(self): ...
684
- def id_properties_ui(self): ...
685
- def is_extended(self): ...
686
- def is_property_hidden(self): ...
687
- def is_property_overridable_library(self): ...
688
- def is_property_readonly(self): ...
689
- def is_property_set(self): ...
690
- def items(self): ...
691
- def keyframe_delete(self): ...
692
- def keyframe_insert(self): ...
693
- def keys(self): ...
694
- def path_from_id(self): ...
695
2235
  def path_menu(
696
2236
  self,
697
2237
  searchpaths,
@@ -702,44 +2242,175 @@ class GRAPH_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
702
2242
  filter_path,
703
2243
  display_name,
704
2244
  add_operator,
705
- ): ...
706
- def path_resolve(self): ...
707
- def pop(self): ...
708
- def prepend(self, draw_func): ...
709
- def property_overridable_library_set(self): ...
710
- def property_unset(self): ...
711
- def remove(self, draw_func): ...
712
- def type_recast(self): ...
713
- def values(self): ...
714
-
715
- class GRAPH_MT_view(bpy_types.Menu, bpy_types._GenericUI):
2245
+ ):
2246
+ """
2247
+
2248
+ :param searchpaths:
2249
+ :param operator:
2250
+ :param props_default:
2251
+ :param prop_filepath:
2252
+ :param filter_ext:
2253
+ :param filter_path:
2254
+ :param display_name:
2255
+ :param add_operator:
2256
+ """
2257
+ ...
2258
+
2259
+ def path_resolve(self):
2260
+ """ """
2261
+ ...
2262
+
2263
+ def pop(self):
2264
+ """ """
2265
+ ...
2266
+
2267
+ def prepend(self, draw_func):
2268
+ """
2269
+
2270
+ :param draw_func:
2271
+ """
2272
+ ...
2273
+
2274
+ def property_overridable_library_set(self):
2275
+ """ """
2276
+ ...
2277
+
2278
+ def property_unset(self):
2279
+ """ """
2280
+ ...
2281
+
2282
+ def remove(self, draw_func):
2283
+ """
2284
+
2285
+ :param draw_func:
2286
+ """
2287
+ ...
2288
+
2289
+ def type_recast(self):
2290
+ """ """
2291
+ ...
2292
+
2293
+ def values(self):
2294
+ """ """
2295
+ ...
2296
+
2297
+ class GRAPH_MT_select(bpy_types._GenericUI):
2298
+ """ """
2299
+
716
2300
  bl_label: typing.Any
2301
+ """ """
2302
+
717
2303
  bl_rna: typing.Any
2304
+ """ """
2305
+
718
2306
  id_data: typing.Any
2307
+ """ """
2308
+
2309
+ def append(self, draw_func):
2310
+ """
2311
+
2312
+ :param draw_func:
2313
+ """
2314
+ ...
2315
+
2316
+ def as_pointer(self):
2317
+ """ """
2318
+ ...
2319
+
2320
+ def bl_rna_get_subclass(self):
2321
+ """ """
2322
+ ...
2323
+
2324
+ def bl_rna_get_subclass_py(self):
2325
+ """ """
2326
+ ...
2327
+
2328
+ def draw(self, _context):
2329
+ """
2330
+
2331
+ :param _context:
2332
+ """
2333
+ ...
2334
+
2335
+ def draw_collapsible(self, context, layout):
2336
+ """
2337
+
2338
+ :param context:
2339
+ :param layout:
2340
+ """
2341
+ ...
2342
+
2343
+ def draw_preset(self, _context):
2344
+ """
2345
+
2346
+ :param _context:
2347
+ """
2348
+ ...
2349
+
2350
+ def driver_add(self):
2351
+ """ """
2352
+ ...
2353
+
2354
+ def driver_remove(self):
2355
+ """ """
2356
+ ...
2357
+
2358
+ def get(self):
2359
+ """ """
2360
+ ...
2361
+
2362
+ def id_properties_clear(self):
2363
+ """ """
2364
+ ...
2365
+
2366
+ def id_properties_ensure(self):
2367
+ """ """
2368
+ ...
2369
+
2370
+ def id_properties_ui(self):
2371
+ """ """
2372
+ ...
2373
+
2374
+ def is_extended(self):
2375
+ """ """
2376
+ ...
2377
+
2378
+ def is_property_hidden(self):
2379
+ """ """
2380
+ ...
2381
+
2382
+ def is_property_overridable_library(self):
2383
+ """ """
2384
+ ...
2385
+
2386
+ def is_property_readonly(self):
2387
+ """ """
2388
+ ...
2389
+
2390
+ def is_property_set(self):
2391
+ """ """
2392
+ ...
2393
+
2394
+ def items(self):
2395
+ """ """
2396
+ ...
2397
+
2398
+ def keyframe_delete(self):
2399
+ """ """
2400
+ ...
2401
+
2402
+ def keyframe_insert(self):
2403
+ """ """
2404
+ ...
2405
+
2406
+ def keys(self):
2407
+ """ """
2408
+ ...
2409
+
2410
+ def path_from_id(self):
2411
+ """ """
2412
+ ...
719
2413
 
720
- def append(self, draw_func): ...
721
- def as_pointer(self): ...
722
- def bl_rna_get_subclass(self): ...
723
- def bl_rna_get_subclass_py(self): ...
724
- def draw(self, context): ...
725
- def draw_collapsible(self, context, layout): ...
726
- def draw_preset(self, _context): ...
727
- def driver_add(self): ...
728
- def driver_remove(self): ...
729
- def get(self): ...
730
- def id_properties_clear(self): ...
731
- def id_properties_ensure(self): ...
732
- def id_properties_ui(self): ...
733
- def is_extended(self): ...
734
- def is_property_hidden(self): ...
735
- def is_property_overridable_library(self): ...
736
- def is_property_readonly(self): ...
737
- def is_property_set(self): ...
738
- def items(self): ...
739
- def keyframe_delete(self): ...
740
- def keyframe_insert(self): ...
741
- def keys(self): ...
742
- def path_from_id(self): ...
743
2414
  def path_menu(
744
2415
  self,
745
2416
  searchpaths,
@@ -750,44 +2421,175 @@ class GRAPH_MT_view(bpy_types.Menu, bpy_types._GenericUI):
750
2421
  filter_path,
751
2422
  display_name,
752
2423
  add_operator,
753
- ): ...
754
- def path_resolve(self): ...
755
- def pop(self): ...
756
- def prepend(self, draw_func): ...
757
- def property_overridable_library_set(self): ...
758
- def property_unset(self): ...
759
- def remove(self, draw_func): ...
760
- def type_recast(self): ...
761
- def values(self): ...
762
-
763
- class GRAPH_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
2424
+ ):
2425
+ """
2426
+
2427
+ :param searchpaths:
2428
+ :param operator:
2429
+ :param props_default:
2430
+ :param prop_filepath:
2431
+ :param filter_ext:
2432
+ :param filter_path:
2433
+ :param display_name:
2434
+ :param add_operator:
2435
+ """
2436
+ ...
2437
+
2438
+ def path_resolve(self):
2439
+ """ """
2440
+ ...
2441
+
2442
+ def pop(self):
2443
+ """ """
2444
+ ...
2445
+
2446
+ def prepend(self, draw_func):
2447
+ """
2448
+
2449
+ :param draw_func:
2450
+ """
2451
+ ...
2452
+
2453
+ def property_overridable_library_set(self):
2454
+ """ """
2455
+ ...
2456
+
2457
+ def property_unset(self):
2458
+ """ """
2459
+ ...
2460
+
2461
+ def remove(self, draw_func):
2462
+ """
2463
+
2464
+ :param draw_func:
2465
+ """
2466
+ ...
2467
+
2468
+ def type_recast(self):
2469
+ """ """
2470
+ ...
2471
+
2472
+ def values(self):
2473
+ """ """
2474
+ ...
2475
+
2476
+ class GRAPH_MT_snap_pie(bpy_types._GenericUI):
2477
+ """ """
2478
+
764
2479
  bl_label: typing.Any
2480
+ """ """
2481
+
765
2482
  bl_rna: typing.Any
2483
+ """ """
2484
+
766
2485
  id_data: typing.Any
2486
+ """ """
2487
+
2488
+ def append(self, draw_func):
2489
+ """
2490
+
2491
+ :param draw_func:
2492
+ """
2493
+ ...
2494
+
2495
+ def as_pointer(self):
2496
+ """ """
2497
+ ...
2498
+
2499
+ def bl_rna_get_subclass(self):
2500
+ """ """
2501
+ ...
2502
+
2503
+ def bl_rna_get_subclass_py(self):
2504
+ """ """
2505
+ ...
2506
+
2507
+ def draw(self, _context):
2508
+ """
2509
+
2510
+ :param _context:
2511
+ """
2512
+ ...
2513
+
2514
+ def draw_collapsible(self, context, layout):
2515
+ """
2516
+
2517
+ :param context:
2518
+ :param layout:
2519
+ """
2520
+ ...
2521
+
2522
+ def draw_preset(self, _context):
2523
+ """
2524
+
2525
+ :param _context:
2526
+ """
2527
+ ...
2528
+
2529
+ def driver_add(self):
2530
+ """ """
2531
+ ...
2532
+
2533
+ def driver_remove(self):
2534
+ """ """
2535
+ ...
2536
+
2537
+ def get(self):
2538
+ """ """
2539
+ ...
2540
+
2541
+ def id_properties_clear(self):
2542
+ """ """
2543
+ ...
2544
+
2545
+ def id_properties_ensure(self):
2546
+ """ """
2547
+ ...
2548
+
2549
+ def id_properties_ui(self):
2550
+ """ """
2551
+ ...
2552
+
2553
+ def is_extended(self):
2554
+ """ """
2555
+ ...
2556
+
2557
+ def is_property_hidden(self):
2558
+ """ """
2559
+ ...
2560
+
2561
+ def is_property_overridable_library(self):
2562
+ """ """
2563
+ ...
2564
+
2565
+ def is_property_readonly(self):
2566
+ """ """
2567
+ ...
2568
+
2569
+ def is_property_set(self):
2570
+ """ """
2571
+ ...
2572
+
2573
+ def items(self):
2574
+ """ """
2575
+ ...
2576
+
2577
+ def keyframe_delete(self):
2578
+ """ """
2579
+ ...
2580
+
2581
+ def keyframe_insert(self):
2582
+ """ """
2583
+ ...
2584
+
2585
+ def keys(self):
2586
+ """ """
2587
+ ...
2588
+
2589
+ def path_from_id(self):
2590
+ """ """
2591
+ ...
767
2592
 
768
- def append(self, draw_func): ...
769
- def as_pointer(self): ...
770
- def bl_rna_get_subclass(self): ...
771
- def bl_rna_get_subclass_py(self): ...
772
- def draw(self, _context): ...
773
- def draw_collapsible(self, context, layout): ...
774
- def draw_preset(self, _context): ...
775
- def driver_add(self): ...
776
- def driver_remove(self): ...
777
- def get(self): ...
778
- def id_properties_clear(self): ...
779
- def id_properties_ensure(self): ...
780
- def id_properties_ui(self): ...
781
- def is_extended(self): ...
782
- def is_property_hidden(self): ...
783
- def is_property_overridable_library(self): ...
784
- def is_property_readonly(self): ...
785
- def is_property_set(self): ...
786
- def items(self): ...
787
- def keyframe_delete(self): ...
788
- def keyframe_insert(self): ...
789
- def keys(self): ...
790
- def path_from_id(self): ...
791
2593
  def path_menu(
792
2594
  self,
793
2595
  searchpaths,
@@ -798,131 +2600,878 @@ class GRAPH_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
798
2600
  filter_path,
799
2601
  display_name,
800
2602
  add_operator,
801
- ): ...
802
- def path_resolve(self): ...
803
- def pop(self): ...
804
- def prepend(self, draw_func): ...
805
- def property_overridable_library_set(self): ...
806
- def property_unset(self): ...
807
- def remove(self, draw_func): ...
808
- def type_recast(self): ...
809
- def values(self): ...
810
-
811
- class GRAPH_PT_filters(
812
- bl_ui.space_dopesheet.DopesheetFilterPopoverBase,
813
- bpy_types.Panel,
814
- bpy_types._GenericUI,
815
- ):
2603
+ ):
2604
+ """
2605
+
2606
+ :param searchpaths:
2607
+ :param operator:
2608
+ :param props_default:
2609
+ :param prop_filepath:
2610
+ :param filter_ext:
2611
+ :param filter_path:
2612
+ :param display_name:
2613
+ :param add_operator:
2614
+ """
2615
+ ...
2616
+
2617
+ def path_resolve(self):
2618
+ """ """
2619
+ ...
2620
+
2621
+ def pop(self):
2622
+ """ """
2623
+ ...
2624
+
2625
+ def prepend(self, draw_func):
2626
+ """
2627
+
2628
+ :param draw_func:
2629
+ """
2630
+ ...
2631
+
2632
+ def property_overridable_library_set(self):
2633
+ """ """
2634
+ ...
2635
+
2636
+ def property_unset(self):
2637
+ """ """
2638
+ ...
2639
+
2640
+ def remove(self, draw_func):
2641
+ """
2642
+
2643
+ :param draw_func:
2644
+ """
2645
+ ...
2646
+
2647
+ def type_recast(self):
2648
+ """ """
2649
+ ...
2650
+
2651
+ def values(self):
2652
+ """ """
2653
+ ...
2654
+
2655
+ class GRAPH_MT_view(bpy_types._GenericUI):
2656
+ """ """
2657
+
816
2658
  bl_label: typing.Any
2659
+ """ """
2660
+
2661
+ bl_rna: typing.Any
2662
+ """ """
2663
+
2664
+ id_data: typing.Any
2665
+ """ """
2666
+
2667
+ def append(self, draw_func):
2668
+ """
2669
+
2670
+ :param draw_func:
2671
+ """
2672
+ ...
2673
+
2674
+ def as_pointer(self):
2675
+ """ """
2676
+ ...
2677
+
2678
+ def bl_rna_get_subclass(self):
2679
+ """ """
2680
+ ...
2681
+
2682
+ def bl_rna_get_subclass_py(self):
2683
+ """ """
2684
+ ...
2685
+
2686
+ def draw(self, context):
2687
+ """
2688
+
2689
+ :param context:
2690
+ """
2691
+ ...
2692
+
2693
+ def draw_collapsible(self, context, layout):
2694
+ """
2695
+
2696
+ :param context:
2697
+ :param layout:
2698
+ """
2699
+ ...
2700
+
2701
+ def draw_preset(self, _context):
2702
+ """
2703
+
2704
+ :param _context:
2705
+ """
2706
+ ...
2707
+
2708
+ def driver_add(self):
2709
+ """ """
2710
+ ...
2711
+
2712
+ def driver_remove(self):
2713
+ """ """
2714
+ ...
2715
+
2716
+ def get(self):
2717
+ """ """
2718
+ ...
2719
+
2720
+ def id_properties_clear(self):
2721
+ """ """
2722
+ ...
2723
+
2724
+ def id_properties_ensure(self):
2725
+ """ """
2726
+ ...
2727
+
2728
+ def id_properties_ui(self):
2729
+ """ """
2730
+ ...
2731
+
2732
+ def is_extended(self):
2733
+ """ """
2734
+ ...
2735
+
2736
+ def is_property_hidden(self):
2737
+ """ """
2738
+ ...
2739
+
2740
+ def is_property_overridable_library(self):
2741
+ """ """
2742
+ ...
2743
+
2744
+ def is_property_readonly(self):
2745
+ """ """
2746
+ ...
2747
+
2748
+ def is_property_set(self):
2749
+ """ """
2750
+ ...
2751
+
2752
+ def items(self):
2753
+ """ """
2754
+ ...
2755
+
2756
+ def keyframe_delete(self):
2757
+ """ """
2758
+ ...
2759
+
2760
+ def keyframe_insert(self):
2761
+ """ """
2762
+ ...
2763
+
2764
+ def keys(self):
2765
+ """ """
2766
+ ...
2767
+
2768
+ def path_from_id(self):
2769
+ """ """
2770
+ ...
2771
+
2772
+ def path_menu(
2773
+ self,
2774
+ searchpaths,
2775
+ operator,
2776
+ props_default,
2777
+ prop_filepath,
2778
+ filter_ext,
2779
+ filter_path,
2780
+ display_name,
2781
+ add_operator,
2782
+ ):
2783
+ """
2784
+
2785
+ :param searchpaths:
2786
+ :param operator:
2787
+ :param props_default:
2788
+ :param prop_filepath:
2789
+ :param filter_ext:
2790
+ :param filter_path:
2791
+ :param display_name:
2792
+ :param add_operator:
2793
+ """
2794
+ ...
2795
+
2796
+ def path_resolve(self):
2797
+ """ """
2798
+ ...
2799
+
2800
+ def pop(self):
2801
+ """ """
2802
+ ...
2803
+
2804
+ def prepend(self, draw_func):
2805
+ """
2806
+
2807
+ :param draw_func:
2808
+ """
2809
+ ...
2810
+
2811
+ def property_overridable_library_set(self):
2812
+ """ """
2813
+ ...
2814
+
2815
+ def property_unset(self):
2816
+ """ """
2817
+ ...
2818
+
2819
+ def remove(self, draw_func):
2820
+ """
2821
+
2822
+ :param draw_func:
2823
+ """
2824
+ ...
2825
+
2826
+ def type_recast(self):
2827
+ """ """
2828
+ ...
2829
+
2830
+ def values(self):
2831
+ """ """
2832
+ ...
2833
+
2834
+ class GRAPH_MT_view_pie(bpy_types._GenericUI):
2835
+ """ """
2836
+
2837
+ bl_label: typing.Any
2838
+ """ """
2839
+
2840
+ bl_rna: typing.Any
2841
+ """ """
2842
+
2843
+ id_data: typing.Any
2844
+ """ """
2845
+
2846
+ def append(self, draw_func):
2847
+ """
2848
+
2849
+ :param draw_func:
2850
+ """
2851
+ ...
2852
+
2853
+ def as_pointer(self):
2854
+ """ """
2855
+ ...
2856
+
2857
+ def bl_rna_get_subclass(self):
2858
+ """ """
2859
+ ...
2860
+
2861
+ def bl_rna_get_subclass_py(self):
2862
+ """ """
2863
+ ...
2864
+
2865
+ def draw(self, _context):
2866
+ """
2867
+
2868
+ :param _context:
2869
+ """
2870
+ ...
2871
+
2872
+ def draw_collapsible(self, context, layout):
2873
+ """
2874
+
2875
+ :param context:
2876
+ :param layout:
2877
+ """
2878
+ ...
2879
+
2880
+ def draw_preset(self, _context):
2881
+ """
2882
+
2883
+ :param _context:
2884
+ """
2885
+ ...
2886
+
2887
+ def driver_add(self):
2888
+ """ """
2889
+ ...
2890
+
2891
+ def driver_remove(self):
2892
+ """ """
2893
+ ...
2894
+
2895
+ def get(self):
2896
+ """ """
2897
+ ...
2898
+
2899
+ def id_properties_clear(self):
2900
+ """ """
2901
+ ...
2902
+
2903
+ def id_properties_ensure(self):
2904
+ """ """
2905
+ ...
2906
+
2907
+ def id_properties_ui(self):
2908
+ """ """
2909
+ ...
2910
+
2911
+ def is_extended(self):
2912
+ """ """
2913
+ ...
2914
+
2915
+ def is_property_hidden(self):
2916
+ """ """
2917
+ ...
2918
+
2919
+ def is_property_overridable_library(self):
2920
+ """ """
2921
+ ...
2922
+
2923
+ def is_property_readonly(self):
2924
+ """ """
2925
+ ...
2926
+
2927
+ def is_property_set(self):
2928
+ """ """
2929
+ ...
2930
+
2931
+ def items(self):
2932
+ """ """
2933
+ ...
2934
+
2935
+ def keyframe_delete(self):
2936
+ """ """
2937
+ ...
2938
+
2939
+ def keyframe_insert(self):
2940
+ """ """
2941
+ ...
2942
+
2943
+ def keys(self):
2944
+ """ """
2945
+ ...
2946
+
2947
+ def path_from_id(self):
2948
+ """ """
2949
+ ...
2950
+
2951
+ def path_menu(
2952
+ self,
2953
+ searchpaths,
2954
+ operator,
2955
+ props_default,
2956
+ prop_filepath,
2957
+ filter_ext,
2958
+ filter_path,
2959
+ display_name,
2960
+ add_operator,
2961
+ ):
2962
+ """
2963
+
2964
+ :param searchpaths:
2965
+ :param operator:
2966
+ :param props_default:
2967
+ :param prop_filepath:
2968
+ :param filter_ext:
2969
+ :param filter_path:
2970
+ :param display_name:
2971
+ :param add_operator:
2972
+ """
2973
+ ...
2974
+
2975
+ def path_resolve(self):
2976
+ """ """
2977
+ ...
2978
+
2979
+ def pop(self):
2980
+ """ """
2981
+ ...
2982
+
2983
+ def prepend(self, draw_func):
2984
+ """
2985
+
2986
+ :param draw_func:
2987
+ """
2988
+ ...
2989
+
2990
+ def property_overridable_library_set(self):
2991
+ """ """
2992
+ ...
2993
+
2994
+ def property_unset(self):
2995
+ """ """
2996
+ ...
2997
+
2998
+ def remove(self, draw_func):
2999
+ """
3000
+
3001
+ :param draw_func:
3002
+ """
3003
+ ...
3004
+
3005
+ def type_recast(self):
3006
+ """ """
3007
+ ...
3008
+
3009
+ def values(self):
3010
+ """ """
3011
+ ...
3012
+
3013
+ class GRAPH_PT_filters(bpy_types._GenericUI):
3014
+ """ """
3015
+
3016
+ bl_label: typing.Any
3017
+ """ """
3018
+
817
3019
  bl_region_type: typing.Any
3020
+ """ """
3021
+
818
3022
  bl_rna: typing.Any
3023
+ """ """
3024
+
819
3025
  bl_space_type: typing.Any
3026
+ """ """
3027
+
820
3028
  id_data: typing.Any
3029
+ """ """
3030
+
3031
+ def append(self, draw_func):
3032
+ """
3033
+
3034
+ :param draw_func:
3035
+ """
3036
+ ...
3037
+
3038
+ def as_pointer(self):
3039
+ """ """
3040
+ ...
3041
+
3042
+ def bl_rna_get_subclass(self):
3043
+ """ """
3044
+ ...
3045
+
3046
+ def bl_rna_get_subclass_py(self):
3047
+ """ """
3048
+ ...
3049
+
3050
+ def draw(self, context):
3051
+ """
3052
+
3053
+ :param context:
3054
+ """
3055
+ ...
3056
+
3057
+ def draw_generic_filters(self, context, layout):
3058
+ """
3059
+
3060
+ :param context:
3061
+ :param layout:
3062
+ """
3063
+ ...
3064
+
3065
+ def draw_search_filters(self, context, layout, generic_filters_only):
3066
+ """
3067
+
3068
+ :param context:
3069
+ :param layout:
3070
+ :param generic_filters_only:
3071
+ """
3072
+ ...
3073
+
3074
+ def draw_standard_filters(self, context, layout):
3075
+ """
3076
+
3077
+ :param context:
3078
+ :param layout:
3079
+ """
3080
+ ...
3081
+
3082
+ def driver_add(self):
3083
+ """ """
3084
+ ...
3085
+
3086
+ def driver_remove(self):
3087
+ """ """
3088
+ ...
3089
+
3090
+ def get(self):
3091
+ """ """
3092
+ ...
3093
+
3094
+ def id_properties_clear(self):
3095
+ """ """
3096
+ ...
3097
+
3098
+ def id_properties_ensure(self):
3099
+ """ """
3100
+ ...
3101
+
3102
+ def id_properties_ui(self):
3103
+ """ """
3104
+ ...
3105
+
3106
+ def is_extended(self):
3107
+ """ """
3108
+ ...
3109
+
3110
+ def is_property_hidden(self):
3111
+ """ """
3112
+ ...
3113
+
3114
+ def is_property_overridable_library(self):
3115
+ """ """
3116
+ ...
3117
+
3118
+ def is_property_readonly(self):
3119
+ """ """
3120
+ ...
3121
+
3122
+ def is_property_set(self):
3123
+ """ """
3124
+ ...
3125
+
3126
+ def items(self):
3127
+ """ """
3128
+ ...
3129
+
3130
+ def keyframe_delete(self):
3131
+ """ """
3132
+ ...
3133
+
3134
+ def keyframe_insert(self):
3135
+ """ """
3136
+ ...
3137
+
3138
+ def keys(self):
3139
+ """ """
3140
+ ...
3141
+
3142
+ def path_from_id(self):
3143
+ """ """
3144
+ ...
3145
+
3146
+ def path_resolve(self):
3147
+ """ """
3148
+ ...
3149
+
3150
+ def pop(self):
3151
+ """ """
3152
+ ...
3153
+
3154
+ def prepend(self, draw_func):
3155
+ """
3156
+
3157
+ :param draw_func:
3158
+ """
3159
+ ...
3160
+
3161
+ def property_overridable_library_set(self):
3162
+ """ """
3163
+ ...
3164
+
3165
+ def property_unset(self):
3166
+ """ """
3167
+ ...
3168
+
3169
+ def remove(self, draw_func):
3170
+ """
3171
+
3172
+ :param draw_func:
3173
+ """
3174
+ ...
3175
+
3176
+ def type_recast(self):
3177
+ """ """
3178
+ ...
3179
+
3180
+ def values(self):
3181
+ """ """
3182
+ ...
3183
+
3184
+ class GRAPH_PT_proportional_edit(bpy_types._GenericUI):
3185
+ """ """
821
3186
 
822
- def append(self, draw_func): ...
823
- def as_pointer(self): ...
824
- def bl_rna_get_subclass(self): ...
825
- def bl_rna_get_subclass_py(self): ...
826
- def draw(self, context): ...
827
- def draw_generic_filters(self, context, layout): ...
828
- def draw_search_filters(self, context, layout, generic_filters_only): ...
829
- def draw_standard_filters(self, context, layout): ...
830
- def driver_add(self): ...
831
- def driver_remove(self): ...
832
- def get(self): ...
833
- def id_properties_clear(self): ...
834
- def id_properties_ensure(self): ...
835
- def id_properties_ui(self): ...
836
- def is_extended(self): ...
837
- def is_property_hidden(self): ...
838
- def is_property_overridable_library(self): ...
839
- def is_property_readonly(self): ...
840
- def is_property_set(self): ...
841
- def items(self): ...
842
- def keyframe_delete(self): ...
843
- def keyframe_insert(self): ...
844
- def keys(self): ...
845
- def path_from_id(self): ...
846
- def path_resolve(self): ...
847
- def pop(self): ...
848
- def prepend(self, draw_func): ...
849
- def property_overridable_library_set(self): ...
850
- def property_unset(self): ...
851
- def remove(self, draw_func): ...
852
- def type_recast(self): ...
853
- def values(self): ...
854
-
855
- class GRAPH_PT_proportional_edit(bpy_types.Panel, bpy_types._GenericUI):
856
3187
  bl_label: typing.Any
3188
+ """ """
3189
+
857
3190
  bl_region_type: typing.Any
3191
+ """ """
3192
+
858
3193
  bl_rna: typing.Any
3194
+ """ """
3195
+
859
3196
  bl_space_type: typing.Any
3197
+ """ """
3198
+
860
3199
  bl_ui_units_x: typing.Any
3200
+ """ """
3201
+
861
3202
  id_data: typing.Any
3203
+ """ """
3204
+
3205
+ def append(self, draw_func):
3206
+ """
3207
+
3208
+ :param draw_func:
3209
+ """
3210
+ ...
3211
+
3212
+ def as_pointer(self):
3213
+ """ """
3214
+ ...
3215
+
3216
+ def bl_rna_get_subclass(self):
3217
+ """ """
3218
+ ...
3219
+
3220
+ def bl_rna_get_subclass_py(self):
3221
+ """ """
3222
+ ...
3223
+
3224
+ def draw(self, context):
3225
+ """
3226
+
3227
+ :param context:
3228
+ """
3229
+ ...
3230
+
3231
+ def driver_add(self):
3232
+ """ """
3233
+ ...
3234
+
3235
+ def driver_remove(self):
3236
+ """ """
3237
+ ...
3238
+
3239
+ def get(self):
3240
+ """ """
3241
+ ...
3242
+
3243
+ def id_properties_clear(self):
3244
+ """ """
3245
+ ...
3246
+
3247
+ def id_properties_ensure(self):
3248
+ """ """
3249
+ ...
3250
+
3251
+ def id_properties_ui(self):
3252
+ """ """
3253
+ ...
3254
+
3255
+ def is_extended(self):
3256
+ """ """
3257
+ ...
3258
+
3259
+ def is_property_hidden(self):
3260
+ """ """
3261
+ ...
3262
+
3263
+ def is_property_overridable_library(self):
3264
+ """ """
3265
+ ...
3266
+
3267
+ def is_property_readonly(self):
3268
+ """ """
3269
+ ...
3270
+
3271
+ def is_property_set(self):
3272
+ """ """
3273
+ ...
3274
+
3275
+ def items(self):
3276
+ """ """
3277
+ ...
3278
+
3279
+ def keyframe_delete(self):
3280
+ """ """
3281
+ ...
3282
+
3283
+ def keyframe_insert(self):
3284
+ """ """
3285
+ ...
3286
+
3287
+ def keys(self):
3288
+ """ """
3289
+ ...
3290
+
3291
+ def path_from_id(self):
3292
+ """ """
3293
+ ...
3294
+
3295
+ def path_resolve(self):
3296
+ """ """
3297
+ ...
3298
+
3299
+ def pop(self):
3300
+ """ """
3301
+ ...
3302
+
3303
+ def prepend(self, draw_func):
3304
+ """
3305
+
3306
+ :param draw_func:
3307
+ """
3308
+ ...
3309
+
3310
+ def property_overridable_library_set(self):
3311
+ """ """
3312
+ ...
3313
+
3314
+ def property_unset(self):
3315
+ """ """
3316
+ ...
3317
+
3318
+ def remove(self, draw_func):
3319
+ """
3320
+
3321
+ :param draw_func:
3322
+ """
3323
+ ...
3324
+
3325
+ def type_recast(self):
3326
+ """ """
3327
+ ...
3328
+
3329
+ def values(self):
3330
+ """ """
3331
+ ...
3332
+
3333
+ class GRAPH_PT_snapping(bpy_types._GenericUI):
3334
+ """ """
862
3335
 
863
- def append(self, draw_func): ...
864
- def as_pointer(self): ...
865
- def bl_rna_get_subclass(self): ...
866
- def bl_rna_get_subclass_py(self): ...
867
- def draw(self, context): ...
868
- def driver_add(self): ...
869
- def driver_remove(self): ...
870
- def get(self): ...
871
- def id_properties_clear(self): ...
872
- def id_properties_ensure(self): ...
873
- def id_properties_ui(self): ...
874
- def is_extended(self): ...
875
- def is_property_hidden(self): ...
876
- def is_property_overridable_library(self): ...
877
- def is_property_readonly(self): ...
878
- def is_property_set(self): ...
879
- def items(self): ...
880
- def keyframe_delete(self): ...
881
- def keyframe_insert(self): ...
882
- def keys(self): ...
883
- def path_from_id(self): ...
884
- def path_resolve(self): ...
885
- def pop(self): ...
886
- def prepend(self, draw_func): ...
887
- def property_overridable_library_set(self): ...
888
- def property_unset(self): ...
889
- def remove(self, draw_func): ...
890
- def type_recast(self): ...
891
- def values(self): ...
892
-
893
- class GRAPH_PT_snapping(bpy_types.Panel, bpy_types._GenericUI):
894
3336
  bl_label: typing.Any
3337
+ """ """
3338
+
895
3339
  bl_region_type: typing.Any
3340
+ """ """
3341
+
896
3342
  bl_rna: typing.Any
3343
+ """ """
3344
+
897
3345
  bl_space_type: typing.Any
3346
+ """ """
3347
+
898
3348
  id_data: typing.Any
3349
+ """ """
3350
+
3351
+ def append(self, draw_func):
3352
+ """
3353
+
3354
+ :param draw_func:
3355
+ """
3356
+ ...
3357
+
3358
+ def as_pointer(self):
3359
+ """ """
3360
+ ...
3361
+
3362
+ def bl_rna_get_subclass(self):
3363
+ """ """
3364
+ ...
3365
+
3366
+ def bl_rna_get_subclass_py(self):
3367
+ """ """
3368
+ ...
3369
+
3370
+ def draw(self, context):
3371
+ """
3372
+
3373
+ :param context:
3374
+ """
3375
+ ...
3376
+
3377
+ def driver_add(self):
3378
+ """ """
3379
+ ...
3380
+
3381
+ def driver_remove(self):
3382
+ """ """
3383
+ ...
3384
+
3385
+ def get(self):
3386
+ """ """
3387
+ ...
3388
+
3389
+ def id_properties_clear(self):
3390
+ """ """
3391
+ ...
3392
+
3393
+ def id_properties_ensure(self):
3394
+ """ """
3395
+ ...
3396
+
3397
+ def id_properties_ui(self):
3398
+ """ """
3399
+ ...
3400
+
3401
+ def is_extended(self):
3402
+ """ """
3403
+ ...
3404
+
3405
+ def is_property_hidden(self):
3406
+ """ """
3407
+ ...
3408
+
3409
+ def is_property_overridable_library(self):
3410
+ """ """
3411
+ ...
3412
+
3413
+ def is_property_readonly(self):
3414
+ """ """
3415
+ ...
3416
+
3417
+ def is_property_set(self):
3418
+ """ """
3419
+ ...
3420
+
3421
+ def items(self):
3422
+ """ """
3423
+ ...
3424
+
3425
+ def keyframe_delete(self):
3426
+ """ """
3427
+ ...
3428
+
3429
+ def keyframe_insert(self):
3430
+ """ """
3431
+ ...
3432
+
3433
+ def keys(self):
3434
+ """ """
3435
+ ...
3436
+
3437
+ def path_from_id(self):
3438
+ """ """
3439
+ ...
3440
+
3441
+ def path_resolve(self):
3442
+ """ """
3443
+ ...
3444
+
3445
+ def pop(self):
3446
+ """ """
3447
+ ...
3448
+
3449
+ def prepend(self, draw_func):
3450
+ """
3451
+
3452
+ :param draw_func:
3453
+ """
3454
+ ...
3455
+
3456
+ def property_overridable_library_set(self):
3457
+ """ """
3458
+ ...
3459
+
3460
+ def property_unset(self):
3461
+ """ """
3462
+ ...
3463
+
3464
+ def remove(self, draw_func):
3465
+ """
3466
+
3467
+ :param draw_func:
3468
+ """
3469
+ ...
3470
+
3471
+ def type_recast(self):
3472
+ """ """
3473
+ ...
899
3474
 
900
- def append(self, draw_func): ...
901
- def as_pointer(self): ...
902
- def bl_rna_get_subclass(self): ...
903
- def bl_rna_get_subclass_py(self): ...
904
- def draw(self, context): ...
905
- def driver_add(self): ...
906
- def driver_remove(self): ...
907
- def get(self): ...
908
- def id_properties_clear(self): ...
909
- def id_properties_ensure(self): ...
910
- def id_properties_ui(self): ...
911
- def is_extended(self): ...
912
- def is_property_hidden(self): ...
913
- def is_property_overridable_library(self): ...
914
- def is_property_readonly(self): ...
915
- def is_property_set(self): ...
916
- def items(self): ...
917
- def keyframe_delete(self): ...
918
- def keyframe_insert(self): ...
919
- def keys(self): ...
920
- def path_from_id(self): ...
921
- def path_resolve(self): ...
922
- def pop(self): ...
923
- def prepend(self, draw_func): ...
924
- def property_overridable_library_set(self): ...
925
- def property_unset(self): ...
926
- def remove(self, draw_func): ...
927
- def type_recast(self): ...
928
- def values(self): ...
3475
+ def values(self):
3476
+ """ """
3477
+ ...