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