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

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +646 -823
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86446 -87424
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240324.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/top_level.txt +0 -0
@@ -1,49 +1,1660 @@
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
+ """ """
9
1307
 
10
- def filter_items(self, _context, data, property):
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):
11
1330
  """
12
1331
 
13
- :param self:
14
- :type self:
15
- :param _context:
16
- :type _context:
17
- :param data:
18
- :type data:
19
- :param property:
20
- :type property:
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):
21
1609
  """
1610
+
1611
+ :param draw_func:
1612
+ """
1613
+ ...
1614
+
1615
+ def type_recast(self):
1616
+ """ """
1617
+ ...
1618
+
1619
+ def values(self):
1620
+ """ """
22
1621
  ...
23
1622
 
24
- class MESH_MT_attribute_context_menu(bpy_types.Menu, bpy_types._GenericUI):
1623
+ class MESH_MT_attribute_context_menu(bpy_types._GenericUI):
1624
+ """ """
1625
+
25
1626
  bl_label: typing.Any
1627
+ """ """
1628
+
26
1629
  bl_rna: typing.Any
1630
+ """ """
1631
+
27
1632
  id_data: typing.Any
1633
+ """ """
28
1634
 
29
1635
  def append(self, draw_func):
30
1636
  """
31
1637
 
32
1638
  :param draw_func:
33
- :type draw_func:
34
1639
  """
35
1640
  ...
36
1641
 
37
- def as_pointer(self): ...
38
- def bl_rna_get_subclass(self): ...
39
- def bl_rna_get_subclass_py(self): ...
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
+
40
1654
  def draw(self, _context):
41
1655
  """
42
1656
 
43
- :param self:
44
- :type self:
45
1657
  :param _context:
46
- :type _context:
47
1658
  """
48
1659
  ...
49
1660
 
@@ -51,38 +1662,81 @@ class MESH_MT_attribute_context_menu(bpy_types.Menu, bpy_types._GenericUI):
51
1662
  """
52
1663
 
53
1664
  :param context:
54
- :type context:
55
1665
  :param layout:
56
- :type layout:
57
1666
  """
58
1667
  ...
59
1668
 
60
1669
  def draw_preset(self, _context):
61
1670
  """
62
1671
 
63
- :param self:
64
- :type self:
65
1672
  :param _context:
66
- :type _context:
67
- """
68
- ...
69
-
70
- def driver_add(self): ...
71
- def driver_remove(self): ...
72
- def get(self): ...
73
- def id_properties_clear(self): ...
74
- def id_properties_ensure(self): ...
75
- def id_properties_ui(self): ...
76
- def is_extended(self): ...
77
- def is_property_hidden(self): ...
78
- def is_property_overridable_library(self): ...
79
- def is_property_readonly(self): ...
80
- def is_property_set(self): ...
81
- def items(self): ...
82
- def keyframe_delete(self): ...
83
- def keyframe_insert(self): ...
84
- def keys(self): ...
85
- def path_from_id(self): ...
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
+ ...
1739
+
86
1740
  def path_menu(
87
1741
  self,
88
1742
  searchpaths,
@@ -96,73 +1750,90 @@ class MESH_MT_attribute_context_menu(bpy_types.Menu, bpy_types._GenericUI):
96
1750
  ):
97
1751
  """
98
1752
 
99
- :param self:
100
- :type self:
101
1753
  :param searchpaths:
102
- :type searchpaths:
103
1754
  :param operator:
104
- :type operator:
105
1755
  :param props_default:
106
- :type props_default:
107
1756
  :param prop_filepath:
108
- :type prop_filepath:
109
1757
  :param filter_ext:
110
- :type filter_ext:
111
1758
  :param filter_path:
112
- :type filter_path:
113
1759
  :param display_name:
114
- :type display_name:
115
1760
  :param add_operator:
116
- :type add_operator:
117
1761
  """
118
1762
  ...
119
1763
 
120
- def path_resolve(self): ...
121
- def pop(self): ...
1764
+ def path_resolve(self):
1765
+ """ """
1766
+ ...
1767
+
1768
+ def pop(self):
1769
+ """ """
1770
+ ...
1771
+
122
1772
  def prepend(self, draw_func):
123
1773
  """
124
1774
 
125
1775
  :param draw_func:
126
- :type draw_func:
127
1776
  """
128
1777
  ...
129
1778
 
130
- def property_overridable_library_set(self): ...
131
- def property_unset(self): ...
1779
+ def property_overridable_library_set(self):
1780
+ """ """
1781
+ ...
1782
+
1783
+ def property_unset(self):
1784
+ """ """
1785
+ ...
1786
+
132
1787
  def remove(self, draw_func):
133
1788
  """
134
1789
 
135
- :param draw_func:
136
- :type draw_func:
137
- """
1790
+ :param draw_func:
1791
+ """
1792
+ ...
1793
+
1794
+ def type_recast(self):
1795
+ """ """
1796
+ ...
1797
+
1798
+ def values(self):
1799
+ """ """
138
1800
  ...
139
1801
 
140
- def type_recast(self): ...
141
- def values(self): ...
1802
+ class MESH_MT_color_attribute_context_menu(bpy_types._GenericUI):
1803
+ """ """
142
1804
 
143
- class MESH_MT_color_attribute_context_menu(bpy_types.Menu, bpy_types._GenericUI):
144
1805
  bl_label: typing.Any
1806
+ """ """
1807
+
145
1808
  bl_rna: typing.Any
1809
+ """ """
1810
+
146
1811
  id_data: typing.Any
1812
+ """ """
147
1813
 
148
1814
  def append(self, draw_func):
149
1815
  """
150
1816
 
151
1817
  :param draw_func:
152
- :type draw_func:
153
1818
  """
154
1819
  ...
155
1820
 
156
- def as_pointer(self): ...
157
- def bl_rna_get_subclass(self): ...
158
- def bl_rna_get_subclass_py(self): ...
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
+
159
1833
  def draw(self, _context):
160
1834
  """
161
1835
 
162
- :param self:
163
- :type self:
164
1836
  :param _context:
165
- :type _context:
166
1837
  """
167
1838
  ...
168
1839
 
@@ -170,38 +1841,81 @@ class MESH_MT_color_attribute_context_menu(bpy_types.Menu, bpy_types._GenericUI)
170
1841
  """
171
1842
 
172
1843
  :param context:
173
- :type context:
174
1844
  :param layout:
175
- :type layout:
176
1845
  """
177
1846
  ...
178
1847
 
179
1848
  def draw_preset(self, _context):
180
1849
  """
181
1850
 
182
- :param self:
183
- :type self:
184
1851
  :param _context:
185
- :type _context:
186
- """
187
- ...
188
-
189
- def driver_add(self): ...
190
- def driver_remove(self): ...
191
- def get(self): ...
192
- def id_properties_clear(self): ...
193
- def id_properties_ensure(self): ...
194
- def id_properties_ui(self): ...
195
- def is_extended(self): ...
196
- def is_property_hidden(self): ...
197
- def is_property_overridable_library(self): ...
198
- def is_property_readonly(self): ...
199
- def is_property_set(self): ...
200
- def items(self): ...
201
- def keyframe_delete(self): ...
202
- def keyframe_insert(self): ...
203
- def keys(self): ...
204
- def path_from_id(self): ...
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
+ ...
1918
+
205
1919
  def path_menu(
206
1920
  self,
207
1921
  searchpaths,
@@ -215,73 +1929,90 @@ class MESH_MT_color_attribute_context_menu(bpy_types.Menu, bpy_types._GenericUI)
215
1929
  ):
216
1930
  """
217
1931
 
218
- :param self:
219
- :type self:
220
1932
  :param searchpaths:
221
- :type searchpaths:
222
1933
  :param operator:
223
- :type operator:
224
1934
  :param props_default:
225
- :type props_default:
226
1935
  :param prop_filepath:
227
- :type prop_filepath:
228
1936
  :param filter_ext:
229
- :type filter_ext:
230
1937
  :param filter_path:
231
- :type filter_path:
232
1938
  :param display_name:
233
- :type display_name:
234
1939
  :param add_operator:
235
- :type add_operator:
236
1940
  """
237
1941
  ...
238
1942
 
239
- def path_resolve(self): ...
240
- def pop(self): ...
1943
+ def path_resolve(self):
1944
+ """ """
1945
+ ...
1946
+
1947
+ def pop(self):
1948
+ """ """
1949
+ ...
1950
+
241
1951
  def prepend(self, draw_func):
242
1952
  """
243
1953
 
244
1954
  :param draw_func:
245
- :type draw_func:
246
1955
  """
247
1956
  ...
248
1957
 
249
- def property_overridable_library_set(self): ...
250
- def property_unset(self): ...
1958
+ def property_overridable_library_set(self):
1959
+ """ """
1960
+ ...
1961
+
1962
+ def property_unset(self):
1963
+ """ """
1964
+ ...
1965
+
251
1966
  def remove(self, draw_func):
252
1967
  """
253
1968
 
254
1969
  :param draw_func:
255
- :type draw_func:
256
1970
  """
257
1971
  ...
258
1972
 
259
- def type_recast(self): ...
260
- def values(self): ...
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
+ """ """
261
1983
 
262
- class MESH_MT_shape_key_context_menu(bpy_types.Menu, bpy_types._GenericUI):
263
1984
  bl_label: typing.Any
1985
+ """ """
1986
+
264
1987
  bl_rna: typing.Any
1988
+ """ """
1989
+
265
1990
  id_data: typing.Any
1991
+ """ """
266
1992
 
267
1993
  def append(self, draw_func):
268
1994
  """
269
1995
 
270
1996
  :param draw_func:
271
- :type draw_func:
272
1997
  """
273
1998
  ...
274
1999
 
275
- def as_pointer(self): ...
276
- def bl_rna_get_subclass(self): ...
277
- def bl_rna_get_subclass_py(self): ...
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
+
278
2012
  def draw(self, _context):
279
2013
  """
280
2014
 
281
- :param self:
282
- :type self:
283
2015
  :param _context:
284
- :type _context:
285
2016
  """
286
2017
  ...
287
2018
 
@@ -289,38 +2020,81 @@ class MESH_MT_shape_key_context_menu(bpy_types.Menu, bpy_types._GenericUI):
289
2020
  """
290
2021
 
291
2022
  :param context:
292
- :type context:
293
2023
  :param layout:
294
- :type layout:
295
2024
  """
296
2025
  ...
297
2026
 
298
2027
  def draw_preset(self, _context):
299
2028
  """
300
2029
 
301
- :param self:
302
- :type self:
303
2030
  :param _context:
304
- :type _context:
305
- """
306
- ...
307
-
308
- def driver_add(self): ...
309
- def driver_remove(self): ...
310
- def get(self): ...
311
- def id_properties_clear(self): ...
312
- def id_properties_ensure(self): ...
313
- def id_properties_ui(self): ...
314
- def is_extended(self): ...
315
- def is_property_hidden(self): ...
316
- def is_property_overridable_library(self): ...
317
- def is_property_readonly(self): ...
318
- def is_property_set(self): ...
319
- def items(self): ...
320
- def keyframe_delete(self): ...
321
- def keyframe_insert(self): ...
322
- def keys(self): ...
323
- def path_from_id(self): ...
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
+ ...
2097
+
324
2098
  def path_menu(
325
2099
  self,
326
2100
  searchpaths,
@@ -334,73 +2108,90 @@ class MESH_MT_shape_key_context_menu(bpy_types.Menu, bpy_types._GenericUI):
334
2108
  ):
335
2109
  """
336
2110
 
337
- :param self:
338
- :type self:
339
2111
  :param searchpaths:
340
- :type searchpaths:
341
2112
  :param operator:
342
- :type operator:
343
2113
  :param props_default:
344
- :type props_default:
345
2114
  :param prop_filepath:
346
- :type prop_filepath:
347
2115
  :param filter_ext:
348
- :type filter_ext:
349
2116
  :param filter_path:
350
- :type filter_path:
351
2117
  :param display_name:
352
- :type display_name:
353
2118
  :param add_operator:
354
- :type add_operator:
355
2119
  """
356
2120
  ...
357
2121
 
358
- def path_resolve(self): ...
359
- def pop(self): ...
2122
+ def path_resolve(self):
2123
+ """ """
2124
+ ...
2125
+
2126
+ def pop(self):
2127
+ """ """
2128
+ ...
2129
+
360
2130
  def prepend(self, draw_func):
361
2131
  """
362
2132
 
363
2133
  :param draw_func:
364
- :type draw_func:
365
2134
  """
366
2135
  ...
367
2136
 
368
- def property_overridable_library_set(self): ...
369
- def property_unset(self): ...
2137
+ def property_overridable_library_set(self):
2138
+ """ """
2139
+ ...
2140
+
2141
+ def property_unset(self):
2142
+ """ """
2143
+ ...
2144
+
370
2145
  def remove(self, draw_func):
371
2146
  """
372
2147
 
373
2148
  :param draw_func:
374
- :type draw_func:
375
2149
  """
376
2150
  ...
377
2151
 
378
- def type_recast(self): ...
379
- def values(self): ...
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
+ """ """
380
2162
 
381
- class MESH_MT_vertex_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
382
2163
  bl_label: typing.Any
2164
+ """ """
2165
+
383
2166
  bl_rna: typing.Any
2167
+ """ """
2168
+
384
2169
  id_data: typing.Any
2170
+ """ """
385
2171
 
386
2172
  def append(self, draw_func):
387
2173
  """
388
2174
 
389
2175
  :param draw_func:
390
- :type draw_func:
391
2176
  """
392
2177
  ...
393
2178
 
394
- def as_pointer(self): ...
395
- def bl_rna_get_subclass(self): ...
396
- def bl_rna_get_subclass_py(self): ...
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
+
397
2191
  def draw(self, _context):
398
2192
  """
399
2193
 
400
- :param self:
401
- :type self:
402
2194
  :param _context:
403
- :type _context:
404
2195
  """
405
2196
  ...
406
2197
 
@@ -408,38 +2199,81 @@ class MESH_MT_vertex_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
408
2199
  """
409
2200
 
410
2201
  :param context:
411
- :type context:
412
2202
  :param layout:
413
- :type layout:
414
2203
  """
415
2204
  ...
416
2205
 
417
2206
  def draw_preset(self, _context):
418
2207
  """
419
2208
 
420
- :param self:
421
- :type self:
422
2209
  :param _context:
423
- :type _context:
424
- """
425
- ...
426
-
427
- def driver_add(self): ...
428
- def driver_remove(self): ...
429
- def get(self): ...
430
- def id_properties_clear(self): ...
431
- def id_properties_ensure(self): ...
432
- def id_properties_ui(self): ...
433
- def is_extended(self): ...
434
- def is_property_hidden(self): ...
435
- def is_property_overridable_library(self): ...
436
- def is_property_readonly(self): ...
437
- def is_property_set(self): ...
438
- def items(self): ...
439
- def keyframe_delete(self): ...
440
- def keyframe_insert(self): ...
441
- def keys(self): ...
442
- def path_from_id(self): ...
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
+ ...
2276
+
443
2277
  def path_menu(
444
2278
  self,
445
2279
  searchpaths,
@@ -453,66 +2287,86 @@ class MESH_MT_vertex_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
453
2287
  ):
454
2288
  """
455
2289
 
456
- :param self:
457
- :type self:
458
2290
  :param searchpaths:
459
- :type searchpaths:
460
2291
  :param operator:
461
- :type operator:
462
2292
  :param props_default:
463
- :type props_default:
464
2293
  :param prop_filepath:
465
- :type prop_filepath:
466
2294
  :param filter_ext:
467
- :type filter_ext:
468
2295
  :param filter_path:
469
- :type filter_path:
470
2296
  :param display_name:
471
- :type display_name:
472
2297
  :param add_operator:
473
- :type add_operator:
474
2298
  """
475
2299
  ...
476
2300
 
477
- def path_resolve(self): ...
478
- def pop(self): ...
2301
+ def path_resolve(self):
2302
+ """ """
2303
+ ...
2304
+
2305
+ def pop(self):
2306
+ """ """
2307
+ ...
2308
+
479
2309
  def prepend(self, draw_func):
480
2310
  """
481
2311
 
482
2312
  :param draw_func:
483
- :type draw_func:
484
2313
  """
485
2314
  ...
486
2315
 
487
- def property_overridable_library_set(self): ...
488
- def property_unset(self): ...
2316
+ def property_overridable_library_set(self):
2317
+ """ """
2318
+ ...
2319
+
2320
+ def property_unset(self):
2321
+ """ """
2322
+ ...
2323
+
489
2324
  def remove(self, draw_func):
490
2325
  """
491
2326
 
492
2327
  :param draw_func:
493
- :type draw_func:
494
2328
  """
495
2329
  ...
496
2330
 
497
- def type_recast(self): ...
498
- def values(self): ...
2331
+ def type_recast(self):
2332
+ """ """
2333
+ ...
2334
+
2335
+ def values(self):
2336
+ """ """
2337
+ ...
2338
+
2339
+ class MESH_UL_attributes(bpy_types._GenericUI):
2340
+ """ """
499
2341
 
500
- class MESH_UL_attributes(bpy_types.UIList, bpy_types._GenericUI):
501
2342
  bl_rna: typing.Any
2343
+ """ """
2344
+
502
2345
  display_domain_names: typing.Any
2346
+ """ """
2347
+
503
2348
  id_data: typing.Any
2349
+ """ """
504
2350
 
505
2351
  def append(self, draw_func):
506
2352
  """
507
2353
 
508
2354
  :param draw_func:
509
- :type draw_func:
510
2355
  """
511
2356
  ...
512
2357
 
513
- def as_pointer(self): ...
514
- def bl_rna_get_subclass(self): ...
515
- def bl_rna_get_subclass_py(self): ...
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
+
516
2370
  def draw_item(
517
2371
  self,
518
2372
  _context,
@@ -526,367 +2380,159 @@ class MESH_UL_attributes(bpy_types.UIList, bpy_types._GenericUI):
526
2380
  ):
527
2381
  """
528
2382
 
529
- :param self:
530
- :type self:
531
2383
  :param _context:
532
- :type _context:
533
2384
  :param layout:
534
- :type layout:
535
2385
  :param _data:
536
- :type _data:
537
2386
  :param attribute:
538
- :type attribute:
539
2387
  :param _icon:
540
- :type _icon:
541
2388
  :param _active_data:
542
- :type _active_data:
543
2389
  :param _active_propname:
544
- :type _active_propname:
545
2390
  :param _index:
546
- :type _index:
547
2391
  """
548
2392
  ...
549
2393
 
550
- def driver_add(self): ...
551
- def driver_remove(self): ...
2394
+ def driver_add(self):
2395
+ """ """
2396
+ ...
2397
+
2398
+ def driver_remove(self):
2399
+ """ """
2400
+ ...
2401
+
552
2402
  def filter_items(self, _context, data, property):
553
2403
  """
554
2404
 
555
- :param self:
556
- :type self:
557
2405
  :param _context:
558
- :type _context:
559
2406
  :param data:
560
- :type data:
561
2407
  :param property:
562
- :type property:
563
- """
564
- ...
565
-
566
- def get(self): ...
567
- def id_properties_clear(self): ...
568
- def id_properties_ensure(self): ...
569
- def id_properties_ui(self): ...
570
- def is_extended(self): ...
571
- def is_property_hidden(self): ...
572
- def is_property_overridable_library(self): ...
573
- def is_property_readonly(self): ...
574
- def is_property_set(self): ...
575
- def items(self): ...
576
- def keyframe_delete(self): ...
577
- def keyframe_insert(self): ...
578
- def keys(self): ...
579
- def path_from_id(self): ...
580
- def path_resolve(self): ...
581
- def pop(self): ...
582
- def prepend(self, draw_func):
583
- """
584
-
585
- :param draw_func:
586
- :type draw_func:
587
2408
  """
588
2409
  ...
589
2410
 
590
- def property_overridable_library_set(self): ...
591
- def property_unset(self): ...
592
- def remove(self, draw_func):
593
- """
594
-
595
- :param draw_func:
596
- :type draw_func:
597
- """
598
- ...
599
-
600
- def type_recast(self): ...
601
- def values(self): ...
602
-
603
- class MESH_UL_shape_keys(bpy_types.UIList, bpy_types._GenericUI):
604
- bl_rna: typing.Any
605
- id_data: typing.Any
606
-
607
- def append(self, draw_func):
608
- """
609
-
610
- :param draw_func:
611
- :type draw_func:
612
- """
2411
+ def get(self):
2412
+ """ """
613
2413
  ...
614
2414
 
615
- def as_pointer(self): ...
616
- def bl_rna_get_subclass(self): ...
617
- def bl_rna_get_subclass_py(self): ...
618
- def draw_item(
619
- self, _context, layout, _data, item, icon, active_data, _active_propname, index
620
- ):
621
- """
622
-
623
- :param self:
624
- :type self:
625
- :param _context:
626
- :type _context:
627
- :param layout:
628
- :type layout:
629
- :param _data:
630
- :type _data:
631
- :param item:
632
- :type item:
633
- :param icon:
634
- :type icon:
635
- :param active_data:
636
- :type active_data:
637
- :param _active_propname:
638
- :type _active_propname:
639
- :param index:
640
- :type index:
641
- """
642
- ...
643
-
644
- def driver_add(self): ...
645
- def driver_remove(self): ...
646
- def get(self): ...
647
- def id_properties_clear(self): ...
648
- def id_properties_ensure(self): ...
649
- def id_properties_ui(self): ...
650
- def is_extended(self): ...
651
- def is_property_hidden(self): ...
652
- def is_property_overridable_library(self): ...
653
- def is_property_readonly(self): ...
654
- def is_property_set(self): ...
655
- def items(self): ...
656
- def keyframe_delete(self): ...
657
- def keyframe_insert(self): ...
658
- def keys(self): ...
659
- def path_from_id(self): ...
660
- def path_resolve(self): ...
661
- def pop(self): ...
662
- def prepend(self, draw_func):
663
- """
664
-
665
- :param draw_func:
666
- :type draw_func:
667
- """
2415
+ def id_properties_clear(self):
2416
+ """ """
668
2417
  ...
669
2418
 
670
- def property_overridable_library_set(self): ...
671
- def property_unset(self): ...
672
- def remove(self, draw_func):
673
- """
674
-
675
- :param draw_func:
676
- :type draw_func:
677
- """
2419
+ def id_properties_ensure(self):
2420
+ """ """
678
2421
  ...
679
2422
 
680
- def type_recast(self): ...
681
- def values(self): ...
682
-
683
- class MESH_UL_uvmaps(bpy_types.UIList, bpy_types._GenericUI):
684
- bl_rna: typing.Any
685
- id_data: typing.Any
686
-
687
- def append(self, draw_func):
688
- """
689
-
690
- :param draw_func:
691
- :type draw_func:
692
- """
2423
+ def id_properties_ui(self):
2424
+ """ """
693
2425
  ...
694
2426
 
695
- def as_pointer(self): ...
696
- def bl_rna_get_subclass(self): ...
697
- def bl_rna_get_subclass_py(self): ...
698
- def draw_item(
699
- self,
700
- _context,
701
- layout,
702
- _data,
703
- item,
704
- icon,
705
- _active_data,
706
- _active_propname,
707
- _index,
708
- ):
709
- """
710
-
711
- :param self:
712
- :type self:
713
- :param _context:
714
- :type _context:
715
- :param layout:
716
- :type layout:
717
- :param _data:
718
- :type _data:
719
- :param item:
720
- :type item:
721
- :param icon:
722
- :type icon:
723
- :param _active_data:
724
- :type _active_data:
725
- :param _active_propname:
726
- :type _active_propname:
727
- :param _index:
728
- :type _index:
729
- """
730
- ...
731
-
732
- def driver_add(self): ...
733
- def driver_remove(self): ...
734
- def get(self): ...
735
- def id_properties_clear(self): ...
736
- def id_properties_ensure(self): ...
737
- def id_properties_ui(self): ...
738
- def is_extended(self): ...
739
- def is_property_hidden(self): ...
740
- def is_property_overridable_library(self): ...
741
- def is_property_readonly(self): ...
742
- def is_property_set(self): ...
743
- def items(self): ...
744
- def keyframe_delete(self): ...
745
- def keyframe_insert(self): ...
746
- def keys(self): ...
747
- def path_from_id(self): ...
748
- def path_resolve(self): ...
749
- def pop(self): ...
750
- def prepend(self, draw_func):
751
- """
752
-
753
- :param draw_func:
754
- :type draw_func:
755
- """
2427
+ def is_extended(self):
2428
+ """ """
756
2429
  ...
757
2430
 
758
- def property_overridable_library_set(self): ...
759
- def property_unset(self): ...
760
- def remove(self, draw_func):
761
- """
2431
+ def is_property_hidden(self):
2432
+ """ """
2433
+ ...
762
2434
 
763
- :param draw_func:
764
- :type draw_func:
765
- """
2435
+ def is_property_overridable_library(self):
2436
+ """ """
766
2437
  ...
767
2438
 
768
- def type_recast(self): ...
769
- def values(self): ...
2439
+ def is_property_readonly(self):
2440
+ """ """
2441
+ ...
770
2442
 
771
- class MESH_UL_vgroups(bpy_types.UIList, bpy_types._GenericUI):
772
- bl_rna: typing.Any
773
- id_data: typing.Any
2443
+ def is_property_set(self):
2444
+ """ """
2445
+ ...
774
2446
 
775
- def append(self, draw_func):
776
- """
2447
+ def items(self):
2448
+ """ """
2449
+ ...
777
2450
 
778
- :param draw_func:
779
- :type draw_func:
780
- """
2451
+ def keyframe_delete(self):
2452
+ """ """
781
2453
  ...
782
2454
 
783
- def as_pointer(self): ...
784
- def bl_rna_get_subclass(self): ...
785
- def bl_rna_get_subclass_py(self): ...
786
- def draw_item(
787
- self,
788
- _context,
789
- layout,
790
- _data,
791
- item,
792
- icon,
793
- _active_data_,
794
- _active_propname,
795
- _index,
796
- ):
797
- """
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
+ ...
798
2474
 
799
- :param self:
800
- :type self:
801
- :param _context:
802
- :type _context:
803
- :param layout:
804
- :type layout:
805
- :param _data:
806
- :type _data:
807
- :param item:
808
- :type item:
809
- :param icon:
810
- :type icon:
811
- :param _active_data_:
812
- :type _active_data_:
813
- :param _active_propname:
814
- :type _active_propname:
815
- :param _index:
816
- :type _index:
817
- """
818
- ...
819
-
820
- def driver_add(self): ...
821
- def driver_remove(self): ...
822
- def get(self): ...
823
- def id_properties_clear(self): ...
824
- def id_properties_ensure(self): ...
825
- def id_properties_ui(self): ...
826
- def is_extended(self): ...
827
- def is_property_hidden(self): ...
828
- def is_property_overridable_library(self): ...
829
- def is_property_readonly(self): ...
830
- def is_property_set(self): ...
831
- def items(self): ...
832
- def keyframe_delete(self): ...
833
- def keyframe_insert(self): ...
834
- def keys(self): ...
835
- def path_from_id(self): ...
836
- def path_resolve(self): ...
837
- def pop(self): ...
838
2475
  def prepend(self, draw_func):
839
2476
  """
840
2477
 
841
2478
  :param draw_func:
842
- :type draw_func:
843
2479
  """
844
2480
  ...
845
2481
 
846
- def property_overridable_library_set(self): ...
847
- def property_unset(self): ...
2482
+ def property_overridable_library_set(self):
2483
+ """ """
2484
+ ...
2485
+
2486
+ def property_unset(self):
2487
+ """ """
2488
+ ...
2489
+
848
2490
  def remove(self, draw_func):
849
2491
  """
850
2492
 
851
2493
  :param draw_func:
852
- :type draw_func:
853
2494
  """
854
2495
  ...
855
2496
 
856
- def type_recast(self): ...
857
- def values(self): ...
858
-
859
- class MeshButtonsPanel:
860
- bl_context: typing.Any
861
- bl_region_type: typing.Any
862
- bl_space_type: typing.Any
863
-
864
- def poll(self, context):
865
- """
2497
+ def type_recast(self):
2498
+ """ """
2499
+ ...
866
2500
 
867
- :param context:
868
- :type context:
869
- """
2501
+ def values(self):
2502
+ """ """
870
2503
  ...
871
2504
 
872
- class MESH_UL_color_attributes(
873
- bpy_types._GenericUI, bpy_types.UIList, ColorAttributesListBase
874
- ):
2505
+ class MESH_UL_color_attributes(ColorAttributesListBase):
2506
+ """ """
2507
+
875
2508
  bl_rna: typing.Any
2509
+ """ """
2510
+
876
2511
  display_domain_names: typing.Any
2512
+ """ """
2513
+
877
2514
  id_data: typing.Any
2515
+ """ """
878
2516
 
879
2517
  def append(self, draw_func):
880
2518
  """
881
2519
 
882
2520
  :param draw_func:
883
- :type draw_func:
884
2521
  """
885
2522
  ...
886
2523
 
887
- def as_pointer(self): ...
888
- def bl_rna_get_subclass(self): ...
889
- def bl_rna_get_subclass_py(self): ...
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
+
890
2536
  def draw_item(
891
2537
  self,
892
2538
  _context,
@@ -900,98 +2546,159 @@ class MESH_UL_color_attributes(
900
2546
  ):
901
2547
  """
902
2548
 
903
- :param self:
904
- :type self:
905
2549
  :param _context:
906
- :type _context:
907
2550
  :param layout:
908
- :type layout:
909
2551
  :param data:
910
- :type data:
911
2552
  :param attribute:
912
- :type attribute:
913
2553
  :param _icon:
914
- :type _icon:
915
2554
  :param _active_data:
916
- :type _active_data:
917
2555
  :param _active_propname:
918
- :type _active_propname:
919
2556
  :param _index:
920
- :type _index:
921
2557
  """
922
2558
  ...
923
2559
 
924
- def driver_add(self): ...
925
- def driver_remove(self): ...
2560
+ def driver_add(self):
2561
+ """ """
2562
+ ...
2563
+
2564
+ def driver_remove(self):
2565
+ """ """
2566
+ ...
2567
+
926
2568
  def filter_items(self, _context, data, property):
927
2569
  """
928
2570
 
929
- :param self:
930
- :type self:
931
2571
  :param _context:
932
- :type _context:
933
2572
  :param data:
934
- :type data:
935
2573
  :param property:
936
- :type property:
937
- """
938
- ...
939
-
940
- def get(self): ...
941
- def id_properties_clear(self): ...
942
- def id_properties_ensure(self): ...
943
- def id_properties_ui(self): ...
944
- def is_extended(self): ...
945
- def is_property_hidden(self): ...
946
- def is_property_overridable_library(self): ...
947
- def is_property_readonly(self): ...
948
- def is_property_set(self): ...
949
- def items(self): ...
950
- def keyframe_delete(self): ...
951
- def keyframe_insert(self): ...
952
- def keys(self): ...
953
- def path_from_id(self): ...
954
- def path_resolve(self): ...
955
- def pop(self): ...
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
+
956
2641
  def prepend(self, draw_func):
957
2642
  """
958
2643
 
959
2644
  :param draw_func:
960
- :type draw_func:
961
2645
  """
962
2646
  ...
963
2647
 
964
- def property_overridable_library_set(self): ...
965
- def property_unset(self): ...
2648
+ def property_overridable_library_set(self):
2649
+ """ """
2650
+ ...
2651
+
2652
+ def property_unset(self):
2653
+ """ """
2654
+ ...
2655
+
966
2656
  def remove(self, draw_func):
967
2657
  """
968
2658
 
969
2659
  :param draw_func:
970
- :type draw_func:
971
2660
  """
972
2661
  ...
973
2662
 
974
- def type_recast(self): ...
975
- def values(self): ...
2663
+ def type_recast(self):
2664
+ """ """
2665
+ ...
2666
+
2667
+ def values(self):
2668
+ """ """
2669
+ ...
2670
+
2671
+ class MESH_UL_color_attributes_selector(ColorAttributesListBase):
2672
+ """ """
976
2673
 
977
- class MESH_UL_color_attributes_selector(
978
- bpy_types._GenericUI, bpy_types.UIList, ColorAttributesListBase
979
- ):
980
2674
  bl_rna: typing.Any
2675
+ """ """
2676
+
981
2677
  display_domain_names: typing.Any
2678
+ """ """
2679
+
982
2680
  id_data: typing.Any
2681
+ """ """
983
2682
 
984
2683
  def append(self, draw_func):
985
2684
  """
986
2685
 
987
2686
  :param draw_func:
988
- :type draw_func:
989
2687
  """
990
2688
  ...
991
2689
 
992
- def as_pointer(self): ...
993
- def bl_rna_get_subclass(self): ...
994
- def bl_rna_get_subclass_py(self): ...
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
+ ...
2701
+
995
2702
  def draw_item(
996
2703
  self,
997
2704
  _context,
@@ -1005,861 +2712,617 @@ class MESH_UL_color_attributes_selector(
1005
2712
  ):
1006
2713
  """
1007
2714
 
1008
- :param self:
1009
- :type self:
1010
2715
  :param _context:
1011
- :type _context:
1012
2716
  :param layout:
1013
- :type layout:
1014
2717
  :param _data:
1015
- :type _data:
1016
2718
  :param attribute:
1017
- :type attribute:
1018
2719
  :param _icon:
1019
- :type _icon:
1020
2720
  :param _active_data:
1021
- :type _active_data:
1022
2721
  :param _active_propname:
1023
- :type _active_propname:
1024
2722
  :param _index:
1025
- :type _index:
1026
2723
  """
1027
2724
  ...
1028
2725
 
1029
- def driver_add(self): ...
1030
- def driver_remove(self): ...
2726
+ def driver_add(self):
2727
+ """ """
2728
+ ...
2729
+
2730
+ def driver_remove(self):
2731
+ """ """
2732
+ ...
2733
+
1031
2734
  def filter_items(self, _context, data, property):
1032
2735
  """
1033
2736
 
1034
- :param self:
1035
- :type self:
1036
2737
  :param _context:
1037
- :type _context:
1038
2738
  :param data:
1039
- :type data:
1040
2739
  :param property:
1041
- :type property:
1042
- """
1043
- ...
1044
-
1045
- def get(self): ...
1046
- def id_properties_clear(self): ...
1047
- def id_properties_ensure(self): ...
1048
- def id_properties_ui(self): ...
1049
- def is_extended(self): ...
1050
- def is_property_hidden(self): ...
1051
- def is_property_overridable_library(self): ...
1052
- def is_property_readonly(self): ...
1053
- def is_property_set(self): ...
1054
- def items(self): ...
1055
- def keyframe_delete(self): ...
1056
- def keyframe_insert(self): ...
1057
- def keys(self): ...
1058
- def path_from_id(self): ...
1059
- def path_resolve(self): ...
1060
- def pop(self): ...
1061
- def prepend(self, draw_func):
1062
2740
  """
2741
+ ...
1063
2742
 
1064
- :param draw_func:
1065
- :type draw_func:
1066
- """
2743
+ def get(self):
2744
+ """ """
1067
2745
  ...
1068
2746
 
1069
- def property_overridable_library_set(self): ...
1070
- def property_unset(self): ...
1071
- def remove(self, draw_func):
1072
- """
2747
+ def id_properties_clear(self):
2748
+ """ """
2749
+ ...
1073
2750
 
1074
- :param draw_func:
1075
- :type draw_func:
1076
- """
2751
+ def id_properties_ensure(self):
2752
+ """ """
1077
2753
  ...
1078
2754
 
1079
- def type_recast(self): ...
1080
- def values(self): ...
2755
+ def id_properties_ui(self):
2756
+ """ """
2757
+ ...
1081
2758
 
1082
- class DATA_PT_context_mesh(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1083
- COMPAT_ENGINES: typing.Any
1084
- bl_context: typing.Any
1085
- bl_label: typing.Any
1086
- bl_options: typing.Any
1087
- bl_region_type: typing.Any
1088
- bl_rna: typing.Any
1089
- bl_space_type: typing.Any
1090
- id_data: typing.Any
2759
+ def is_extended(self):
2760
+ """ """
2761
+ ...
1091
2762
 
1092
- def append(self, draw_func):
1093
- """
2763
+ def is_property_hidden(self):
2764
+ """ """
2765
+ ...
1094
2766
 
1095
- :param draw_func:
1096
- :type draw_func:
1097
- """
2767
+ def is_property_overridable_library(self):
2768
+ """ """
1098
2769
  ...
1099
2770
 
1100
- def as_pointer(self): ...
1101
- def bl_rna_get_subclass(self): ...
1102
- def bl_rna_get_subclass_py(self): ...
1103
- def draw(self, context):
1104
- """
2771
+ def is_property_readonly(self):
2772
+ """ """
2773
+ ...
1105
2774
 
1106
- :param self:
1107
- :type self:
1108
- :param context:
1109
- :type context:
1110
- """
1111
- ...
1112
-
1113
- def driver_add(self): ...
1114
- def driver_remove(self): ...
1115
- def get(self): ...
1116
- def id_properties_clear(self): ...
1117
- def id_properties_ensure(self): ...
1118
- def id_properties_ui(self): ...
1119
- def is_extended(self): ...
1120
- def is_property_hidden(self): ...
1121
- def is_property_overridable_library(self): ...
1122
- def is_property_readonly(self): ...
1123
- def is_property_set(self): ...
1124
- def items(self): ...
1125
- def keyframe_delete(self): ...
1126
- def keyframe_insert(self): ...
1127
- def keys(self): ...
1128
- def path_from_id(self): ...
1129
- def path_resolve(self): ...
1130
- def poll(self, context):
1131
- """
2775
+ def is_property_set(self):
2776
+ """ """
2777
+ ...
1132
2778
 
1133
- :param context:
1134
- :type context:
1135
- """
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
+ """ """
1136
2805
  ...
1137
2806
 
1138
- def pop(self): ...
1139
2807
  def prepend(self, draw_func):
1140
2808
  """
1141
2809
 
1142
2810
  :param draw_func:
1143
- :type draw_func:
1144
2811
  """
1145
2812
  ...
1146
2813
 
1147
- def property_overridable_library_set(self): ...
1148
- def property_unset(self): ...
2814
+ def property_overridable_library_set(self):
2815
+ """ """
2816
+ ...
2817
+
2818
+ def property_unset(self):
2819
+ """ """
2820
+ ...
2821
+
1149
2822
  def remove(self, draw_func):
1150
2823
  """
1151
2824
 
1152
2825
  :param draw_func:
1153
- :type draw_func:
1154
2826
  """
1155
2827
  ...
1156
2828
 
1157
- def type_recast(self): ...
1158
- def values(self): ...
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
+ """ """
1159
2839
 
1160
- class DATA_PT_custom_props_mesh(
1161
- MeshButtonsPanel, bpy_types.Panel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
1162
- ):
1163
- COMPAT_ENGINES: typing.Any
1164
- bl_context: typing.Any
1165
- bl_label: typing.Any
1166
- bl_options: typing.Any
1167
- bl_order: typing.Any
1168
- bl_region_type: typing.Any
1169
2840
  bl_rna: typing.Any
1170
- bl_space_type: typing.Any
2841
+ """ """
2842
+
1171
2843
  id_data: typing.Any
2844
+ """ """
1172
2845
 
1173
2846
  def append(self, draw_func):
1174
2847
  """
1175
2848
 
1176
2849
  :param draw_func:
1177
- :type draw_func:
1178
2850
  """
1179
2851
  ...
1180
2852
 
1181
- def as_pointer(self): ...
1182
- def bl_rna_get_subclass(self): ...
1183
- def bl_rna_get_subclass_py(self): ...
1184
- def draw(self, context):
1185
- """
2853
+ def as_pointer(self):
2854
+ """ """
2855
+ ...
1186
2856
 
1187
- :param self:
1188
- :type self:
1189
- :param context:
1190
- :type context:
1191
- """
1192
- ...
1193
-
1194
- def driver_add(self): ...
1195
- def driver_remove(self): ...
1196
- def get(self): ...
1197
- def id_properties_clear(self): ...
1198
- def id_properties_ensure(self): ...
1199
- def id_properties_ui(self): ...
1200
- def is_extended(self): ...
1201
- def is_property_hidden(self): ...
1202
- def is_property_overridable_library(self): ...
1203
- def is_property_readonly(self): ...
1204
- def is_property_set(self): ...
1205
- def items(self): ...
1206
- def keyframe_delete(self): ...
1207
- def keyframe_insert(self): ...
1208
- def keys(self): ...
1209
- def path_from_id(self): ...
1210
- def path_resolve(self): ...
1211
- def poll(self, context):
1212
- """
2857
+ def bl_rna_get_subclass(self):
2858
+ """ """
2859
+ ...
1213
2860
 
1214
- :param context:
1215
- :type context:
1216
- """
2861
+ def bl_rna_get_subclass_py(self):
2862
+ """ """
1217
2863
  ...
1218
2864
 
1219
- def pop(self): ...
1220
- def prepend(self, draw_func):
2865
+ def draw_item(
2866
+ self, _context, layout, _data, item, icon, active_data, _active_propname, index
2867
+ ):
1221
2868
  """
1222
2869
 
1223
- :param draw_func:
1224
- :type draw_func:
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:
1225
2878
  """
1226
2879
  ...
1227
2880
 
1228
- def property_overridable_library_set(self): ...
1229
- def property_unset(self): ...
1230
- def remove(self, draw_func):
1231
- """
2881
+ def driver_add(self):
2882
+ """ """
2883
+ ...
1232
2884
 
1233
- :param draw_func:
1234
- :type draw_func:
1235
- """
2885
+ def driver_remove(self):
2886
+ """ """
1236
2887
  ...
1237
2888
 
1238
- def type_recast(self): ...
1239
- def values(self): ...
2889
+ def get(self):
2890
+ """ """
2891
+ ...
1240
2892
 
1241
- class DATA_PT_customdata(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1242
- COMPAT_ENGINES: typing.Any
1243
- bl_context: typing.Any
1244
- bl_label: typing.Any
1245
- bl_options: typing.Any
1246
- bl_region_type: typing.Any
1247
- bl_rna: typing.Any
1248
- bl_space_type: typing.Any
1249
- id_data: typing.Any
2893
+ def id_properties_clear(self):
2894
+ """ """
2895
+ ...
1250
2896
 
1251
- def append(self, draw_func):
1252
- """
2897
+ def id_properties_ensure(self):
2898
+ """ """
2899
+ ...
1253
2900
 
1254
- :param draw_func:
1255
- :type draw_func:
1256
- """
2901
+ def id_properties_ui(self):
2902
+ """ """
1257
2903
  ...
1258
2904
 
1259
- def as_pointer(self): ...
1260
- def bl_rna_get_subclass(self): ...
1261
- def bl_rna_get_subclass_py(self): ...
1262
- def draw(self, context):
1263
- """
2905
+ def is_extended(self):
2906
+ """ """
2907
+ ...
1264
2908
 
1265
- :param self:
1266
- :type self:
1267
- :param context:
1268
- :type context:
1269
- """
1270
- ...
1271
-
1272
- def driver_add(self): ...
1273
- def driver_remove(self): ...
1274
- def get(self): ...
1275
- def id_properties_clear(self): ...
1276
- def id_properties_ensure(self): ...
1277
- def id_properties_ui(self): ...
1278
- def is_extended(self): ...
1279
- def is_property_hidden(self): ...
1280
- def is_property_overridable_library(self): ...
1281
- def is_property_readonly(self): ...
1282
- def is_property_set(self): ...
1283
- def items(self): ...
1284
- def keyframe_delete(self): ...
1285
- def keyframe_insert(self): ...
1286
- def keys(self): ...
1287
- def path_from_id(self): ...
1288
- def path_resolve(self): ...
1289
- def poll(self, context):
1290
- """
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
+ ...
1291
2948
 
1292
- :param context:
1293
- :type context:
1294
- """
2949
+ def pop(self):
2950
+ """ """
1295
2951
  ...
1296
2952
 
1297
- def pop(self): ...
1298
2953
  def prepend(self, draw_func):
1299
2954
  """
1300
2955
 
1301
2956
  :param draw_func:
1302
- :type draw_func:
1303
2957
  """
1304
2958
  ...
1305
2959
 
1306
- def property_overridable_library_set(self): ...
1307
- def property_unset(self): ...
2960
+ def property_overridable_library_set(self):
2961
+ """ """
2962
+ ...
2963
+
2964
+ def property_unset(self):
2965
+ """ """
2966
+ ...
2967
+
1308
2968
  def remove(self, draw_func):
1309
2969
  """
1310
2970
 
1311
2971
  :param draw_func:
1312
- :type draw_func:
1313
2972
  """
1314
2973
  ...
1315
2974
 
1316
- def type_recast(self): ...
1317
- def values(self): ...
2975
+ def type_recast(self):
2976
+ """ """
2977
+ ...
2978
+
2979
+ def values(self):
2980
+ """ """
2981
+ ...
2982
+
2983
+ class MESH_UL_uvmaps(bpy_types._GenericUI):
2984
+ """ """
1318
2985
 
1319
- class DATA_PT_mesh_attributes(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1320
- COMPAT_ENGINES: typing.Any
1321
- bl_context: typing.Any
1322
- bl_label: typing.Any
1323
- bl_options: typing.Any
1324
- bl_region_type: typing.Any
1325
2986
  bl_rna: typing.Any
1326
- bl_space_type: typing.Any
2987
+ """ """
2988
+
1327
2989
  id_data: typing.Any
2990
+ """ """
1328
2991
 
1329
2992
  def append(self, draw_func):
1330
2993
  """
1331
2994
 
1332
2995
  :param draw_func:
1333
- :type draw_func:
1334
2996
  """
1335
2997
  ...
1336
2998
 
1337
- def as_pointer(self): ...
1338
- def bl_rna_get_subclass(self): ...
1339
- def bl_rna_get_subclass_py(self): ...
1340
- def draw(self, context):
1341
- """
1342
-
1343
- :param self:
1344
- :type self:
1345
- :param context:
1346
- :type context:
1347
- """
1348
- ...
1349
-
1350
- def driver_add(self): ...
1351
- def driver_remove(self): ...
1352
- def get(self): ...
1353
- def id_properties_clear(self): ...
1354
- def id_properties_ensure(self): ...
1355
- def id_properties_ui(self): ...
1356
- def is_extended(self): ...
1357
- def is_property_hidden(self): ...
1358
- def is_property_overridable_library(self): ...
1359
- def is_property_readonly(self): ...
1360
- def is_property_set(self): ...
1361
- def items(self): ...
1362
- def keyframe_delete(self): ...
1363
- def keyframe_insert(self): ...
1364
- def keys(self): ...
1365
- def path_from_id(self): ...
1366
- def path_resolve(self): ...
1367
- def poll(self, context):
1368
- """
1369
-
1370
- :param context:
1371
- :type context:
1372
- """
2999
+ def as_pointer(self):
3000
+ """ """
1373
3001
  ...
1374
3002
 
1375
- def pop(self): ...
1376
- def prepend(self, draw_func):
1377
- """
3003
+ def bl_rna_get_subclass(self):
3004
+ """ """
3005
+ ...
1378
3006
 
1379
- :param draw_func:
1380
- :type draw_func:
1381
- """
3007
+ def bl_rna_get_subclass_py(self):
3008
+ """ """
1382
3009
  ...
1383
3010
 
1384
- def property_overridable_library_set(self): ...
1385
- def property_unset(self): ...
1386
- def remove(self, draw_func):
3011
+ def draw_item(
3012
+ self,
3013
+ _context,
3014
+ layout,
3015
+ _data,
3016
+ item,
3017
+ icon,
3018
+ _active_data,
3019
+ _active_propname,
3020
+ _index,
3021
+ ):
1387
3022
  """
1388
3023
 
1389
- :param draw_func:
1390
- :type draw_func:
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:
1391
3032
  """
1392
3033
  ...
1393
3034
 
1394
- def type_recast(self): ...
1395
- def values(self): ...
3035
+ def driver_add(self):
3036
+ """ """
3037
+ ...
1396
3038
 
1397
- class DATA_PT_remesh(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1398
- COMPAT_ENGINES: typing.Any
1399
- bl_context: typing.Any
1400
- bl_label: typing.Any
1401
- bl_options: typing.Any
1402
- bl_region_type: typing.Any
1403
- bl_rna: typing.Any
1404
- bl_space_type: typing.Any
1405
- id_data: typing.Any
3039
+ def driver_remove(self):
3040
+ """ """
3041
+ ...
1406
3042
 
1407
- def append(self, draw_func):
1408
- """
3043
+ def get(self):
3044
+ """ """
3045
+ ...
1409
3046
 
1410
- :param draw_func:
1411
- :type draw_func:
1412
- """
3047
+ def id_properties_clear(self):
3048
+ """ """
1413
3049
  ...
1414
3050
 
1415
- def as_pointer(self): ...
1416
- def bl_rna_get_subclass(self): ...
1417
- def bl_rna_get_subclass_py(self): ...
1418
- def draw(self, context):
1419
- """
3051
+ def id_properties_ensure(self):
3052
+ """ """
3053
+ ...
1420
3054
 
1421
- :param self:
1422
- :type self:
1423
- :param context:
1424
- :type context:
1425
- """
1426
- ...
1427
-
1428
- def driver_add(self): ...
1429
- def driver_remove(self): ...
1430
- def get(self): ...
1431
- def id_properties_clear(self): ...
1432
- def id_properties_ensure(self): ...
1433
- def id_properties_ui(self): ...
1434
- def is_extended(self): ...
1435
- def is_property_hidden(self): ...
1436
- def is_property_overridable_library(self): ...
1437
- def is_property_readonly(self): ...
1438
- def is_property_set(self): ...
1439
- def items(self): ...
1440
- def keyframe_delete(self): ...
1441
- def keyframe_insert(self): ...
1442
- def keys(self): ...
1443
- def path_from_id(self): ...
1444
- def path_resolve(self): ...
1445
- def poll(self, context):
1446
- """
3055
+ def id_properties_ui(self):
3056
+ """ """
3057
+ ...
1447
3058
 
1448
- :param context:
1449
- :type context:
1450
- """
3059
+ def is_extended(self):
3060
+ """ """
1451
3061
  ...
1452
3062
 
1453
- def pop(self): ...
1454
- def prepend(self, draw_func):
1455
- """
3063
+ def is_property_hidden(self):
3064
+ """ """
3065
+ ...
1456
3066
 
1457
- :param draw_func:
1458
- :type draw_func:
1459
- """
3067
+ def is_property_overridable_library(self):
3068
+ """ """
1460
3069
  ...
1461
3070
 
1462
- def property_overridable_library_set(self): ...
1463
- def property_unset(self): ...
1464
- def remove(self, draw_func):
1465
- """
3071
+ def is_property_readonly(self):
3072
+ """ """
3073
+ ...
1466
3074
 
1467
- :param draw_func:
1468
- :type draw_func:
1469
- """
3075
+ def is_property_set(self):
3076
+ """ """
1470
3077
  ...
1471
3078
 
1472
- def type_recast(self): ...
1473
- def values(self): ...
3079
+ def items(self):
3080
+ """ """
3081
+ ...
1474
3082
 
1475
- class DATA_PT_shape_keys(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1476
- COMPAT_ENGINES: typing.Any
1477
- bl_context: typing.Any
1478
- bl_label: typing.Any
1479
- bl_region_type: typing.Any
1480
- bl_rna: typing.Any
1481
- bl_space_type: typing.Any
1482
- id_data: typing.Any
3083
+ def keyframe_delete(self):
3084
+ """ """
3085
+ ...
1483
3086
 
1484
- def append(self, draw_func):
1485
- """
3087
+ def keyframe_insert(self):
3088
+ """ """
3089
+ ...
1486
3090
 
1487
- :param draw_func:
1488
- :type draw_func:
1489
- """
3091
+ def keys(self):
3092
+ """ """
1490
3093
  ...
1491
3094
 
1492
- def as_pointer(self): ...
1493
- def bl_rna_get_subclass(self): ...
1494
- def bl_rna_get_subclass_py(self): ...
1495
- def draw(self, context):
1496
- """
3095
+ def path_from_id(self):
3096
+ """ """
3097
+ ...
1497
3098
 
1498
- :param self:
1499
- :type self:
1500
- :param context:
1501
- :type context:
1502
- """
1503
- ...
1504
-
1505
- def driver_add(self): ...
1506
- def driver_remove(self): ...
1507
- def get(self): ...
1508
- def id_properties_clear(self): ...
1509
- def id_properties_ensure(self): ...
1510
- def id_properties_ui(self): ...
1511
- def is_extended(self): ...
1512
- def is_property_hidden(self): ...
1513
- def is_property_overridable_library(self): ...
1514
- def is_property_readonly(self): ...
1515
- def is_property_set(self): ...
1516
- def items(self): ...
1517
- def keyframe_delete(self): ...
1518
- def keyframe_insert(self): ...
1519
- def keys(self): ...
1520
- def path_from_id(self): ...
1521
- def path_resolve(self): ...
1522
- def poll(self, context):
1523
- """
3099
+ def path_resolve(self):
3100
+ """ """
3101
+ ...
1524
3102
 
1525
- :param context:
1526
- :type context:
1527
- """
3103
+ def pop(self):
3104
+ """ """
1528
3105
  ...
1529
3106
 
1530
- def pop(self): ...
1531
3107
  def prepend(self, draw_func):
1532
3108
  """
1533
3109
 
1534
3110
  :param draw_func:
1535
- :type draw_func:
1536
3111
  """
1537
3112
  ...
1538
3113
 
1539
- def property_overridable_library_set(self): ...
1540
- def property_unset(self): ...
3114
+ def property_overridable_library_set(self):
3115
+ """ """
3116
+ ...
3117
+
3118
+ def property_unset(self):
3119
+ """ """
3120
+ ...
3121
+
1541
3122
  def remove(self, draw_func):
1542
3123
  """
1543
3124
 
1544
3125
  :param draw_func:
1545
- :type draw_func:
1546
3126
  """
1547
3127
  ...
1548
3128
 
1549
- def type_recast(self): ...
1550
- def values(self): ...
3129
+ def type_recast(self):
3130
+ """ """
3131
+ ...
3132
+
3133
+ def values(self):
3134
+ """ """
3135
+ ...
3136
+
3137
+ class MESH_UL_vgroups(bpy_types._GenericUI):
3138
+ """ """
1551
3139
 
1552
- class DATA_PT_texture_space(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1553
- COMPAT_ENGINES: typing.Any
1554
- bl_context: typing.Any
1555
- bl_label: typing.Any
1556
- bl_options: typing.Any
1557
- bl_region_type: typing.Any
1558
3140
  bl_rna: typing.Any
1559
- bl_space_type: typing.Any
3141
+ """ """
3142
+
1560
3143
  id_data: typing.Any
3144
+ """ """
1561
3145
 
1562
3146
  def append(self, draw_func):
1563
3147
  """
1564
3148
 
1565
3149
  :param draw_func:
1566
- :type draw_func:
1567
3150
  """
1568
3151
  ...
1569
3152
 
1570
- def as_pointer(self): ...
1571
- def bl_rna_get_subclass(self): ...
1572
- def bl_rna_get_subclass_py(self): ...
1573
- def draw(self, context):
1574
- """
1575
-
1576
- :param self:
1577
- :type self:
1578
- :param context:
1579
- :type context:
1580
- """
1581
- ...
1582
-
1583
- def driver_add(self): ...
1584
- def driver_remove(self): ...
1585
- def get(self): ...
1586
- def id_properties_clear(self): ...
1587
- def id_properties_ensure(self): ...
1588
- def id_properties_ui(self): ...
1589
- def is_extended(self): ...
1590
- def is_property_hidden(self): ...
1591
- def is_property_overridable_library(self): ...
1592
- def is_property_readonly(self): ...
1593
- def is_property_set(self): ...
1594
- def items(self): ...
1595
- def keyframe_delete(self): ...
1596
- def keyframe_insert(self): ...
1597
- def keys(self): ...
1598
- def path_from_id(self): ...
1599
- def path_resolve(self): ...
1600
- def poll(self, context):
1601
- """
1602
-
1603
- :param context:
1604
- :type context:
1605
- """
3153
+ def as_pointer(self):
3154
+ """ """
1606
3155
  ...
1607
3156
 
1608
- def pop(self): ...
1609
- def prepend(self, draw_func):
1610
- """
3157
+ def bl_rna_get_subclass(self):
3158
+ """ """
3159
+ ...
1611
3160
 
1612
- :param draw_func:
1613
- :type draw_func:
1614
- """
3161
+ def bl_rna_get_subclass_py(self):
3162
+ """ """
1615
3163
  ...
1616
3164
 
1617
- def property_overridable_library_set(self): ...
1618
- def property_unset(self): ...
1619
- def remove(self, draw_func):
3165
+ def draw_item(
3166
+ self,
3167
+ _context,
3168
+ layout,
3169
+ _data,
3170
+ item,
3171
+ icon,
3172
+ _active_data_,
3173
+ _active_propname,
3174
+ _index,
3175
+ ):
1620
3176
  """
1621
3177
 
1622
- :param draw_func:
1623
- :type draw_func:
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:
1624
3186
  """
1625
3187
  ...
1626
3188
 
1627
- def type_recast(self): ...
1628
- def values(self): ...
3189
+ def driver_add(self):
3190
+ """ """
3191
+ ...
1629
3192
 
1630
- class DATA_PT_uv_texture(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1631
- COMPAT_ENGINES: typing.Any
1632
- bl_context: typing.Any
1633
- bl_label: typing.Any
1634
- bl_options: typing.Any
1635
- bl_region_type: typing.Any
1636
- bl_rna: typing.Any
1637
- bl_space_type: typing.Any
1638
- id_data: typing.Any
3193
+ def driver_remove(self):
3194
+ """ """
3195
+ ...
1639
3196
 
1640
- def append(self, draw_func):
1641
- """
3197
+ def get(self):
3198
+ """ """
3199
+ ...
1642
3200
 
1643
- :param draw_func:
1644
- :type draw_func:
1645
- """
3201
+ def id_properties_clear(self):
3202
+ """ """
1646
3203
  ...
1647
3204
 
1648
- def as_pointer(self): ...
1649
- def bl_rna_get_subclass(self): ...
1650
- def bl_rna_get_subclass_py(self): ...
1651
- def draw(self, context):
1652
- """
3205
+ def id_properties_ensure(self):
3206
+ """ """
3207
+ ...
1653
3208
 
1654
- :param self:
1655
- :type self:
1656
- :param context:
1657
- :type context:
1658
- """
1659
- ...
1660
-
1661
- def driver_add(self): ...
1662
- def driver_remove(self): ...
1663
- def get(self): ...
1664
- def id_properties_clear(self): ...
1665
- def id_properties_ensure(self): ...
1666
- def id_properties_ui(self): ...
1667
- def is_extended(self): ...
1668
- def is_property_hidden(self): ...
1669
- def is_property_overridable_library(self): ...
1670
- def is_property_readonly(self): ...
1671
- def is_property_set(self): ...
1672
- def items(self): ...
1673
- def keyframe_delete(self): ...
1674
- def keyframe_insert(self): ...
1675
- def keys(self): ...
1676
- def path_from_id(self): ...
1677
- def path_resolve(self): ...
1678
- def poll(self, context):
1679
- """
3209
+ def id_properties_ui(self):
3210
+ """ """
3211
+ ...
1680
3212
 
1681
- :param context:
1682
- :type context:
1683
- """
3213
+ def is_extended(self):
3214
+ """ """
1684
3215
  ...
1685
3216
 
1686
- def pop(self): ...
1687
- def prepend(self, draw_func):
1688
- """
3217
+ def is_property_hidden(self):
3218
+ """ """
3219
+ ...
1689
3220
 
1690
- :param draw_func:
1691
- :type draw_func:
1692
- """
3221
+ def is_property_overridable_library(self):
3222
+ """ """
1693
3223
  ...
1694
3224
 
1695
- def property_overridable_library_set(self): ...
1696
- def property_unset(self): ...
1697
- def remove(self, draw_func):
1698
- """
3225
+ def is_property_readonly(self):
3226
+ """ """
3227
+ ...
1699
3228
 
1700
- :param draw_func:
1701
- :type draw_func:
1702
- """
3229
+ def is_property_set(self):
3230
+ """ """
1703
3231
  ...
1704
3232
 
1705
- def type_recast(self): ...
1706
- def values(self): ...
3233
+ def items(self):
3234
+ """ """
3235
+ ...
1707
3236
 
1708
- class DATA_PT_vertex_groups(MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1709
- COMPAT_ENGINES: typing.Any
1710
- bl_context: typing.Any
1711
- bl_label: typing.Any
1712
- bl_region_type: typing.Any
1713
- bl_rna: typing.Any
1714
- bl_space_type: typing.Any
1715
- id_data: typing.Any
3237
+ def keyframe_delete(self):
3238
+ """ """
3239
+ ...
1716
3240
 
1717
- def append(self, draw_func):
1718
- """
3241
+ def keyframe_insert(self):
3242
+ """ """
3243
+ ...
1719
3244
 
1720
- :param draw_func:
1721
- :type draw_func:
1722
- """
3245
+ def keys(self):
3246
+ """ """
1723
3247
  ...
1724
3248
 
1725
- def as_pointer(self): ...
1726
- def bl_rna_get_subclass(self): ...
1727
- def bl_rna_get_subclass_py(self): ...
1728
- def draw(self, context):
1729
- """
3249
+ def path_from_id(self):
3250
+ """ """
3251
+ ...
1730
3252
 
1731
- :param self:
1732
- :type self:
1733
- :param context:
1734
- :type context:
1735
- """
1736
- ...
1737
-
1738
- def driver_add(self): ...
1739
- def driver_remove(self): ...
1740
- def get(self): ...
1741
- def id_properties_clear(self): ...
1742
- def id_properties_ensure(self): ...
1743
- def id_properties_ui(self): ...
1744
- def is_extended(self): ...
1745
- def is_property_hidden(self): ...
1746
- def is_property_overridable_library(self): ...
1747
- def is_property_readonly(self): ...
1748
- def is_property_set(self): ...
1749
- def items(self): ...
1750
- def keyframe_delete(self): ...
1751
- def keyframe_insert(self): ...
1752
- def keys(self): ...
1753
- def path_from_id(self): ...
1754
- def path_resolve(self): ...
1755
- def poll(self, context):
1756
- """
3253
+ def path_resolve(self):
3254
+ """ """
3255
+ ...
1757
3256
 
1758
- :param context:
1759
- :type context:
1760
- """
3257
+ def pop(self):
3258
+ """ """
1761
3259
  ...
1762
3260
 
1763
- def pop(self): ...
1764
3261
  def prepend(self, draw_func):
1765
3262
  """
1766
3263
 
1767
3264
  :param draw_func:
1768
- :type draw_func:
1769
3265
  """
1770
3266
  ...
1771
3267
 
1772
- def property_overridable_library_set(self): ...
1773
- def property_unset(self): ...
3268
+ def property_overridable_library_set(self):
3269
+ """ """
3270
+ ...
3271
+
3272
+ def property_unset(self):
3273
+ """ """
3274
+ ...
3275
+
1774
3276
  def remove(self, draw_func):
1775
3277
  """
1776
3278
 
1777
3279
  :param draw_func:
1778
- :type draw_func:
1779
3280
  """
1780
3281
  ...
1781
3282
 
1782
- def type_recast(self): ...
1783
- def values(self): ...
3283
+ def type_recast(self):
3284
+ """ """
3285
+ ...
1784
3286
 
1785
- class DATA_PT_vertex_colors(
1786
- DATA_PT_mesh_attributes, MeshButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
1787
- ):
1788
- COMPAT_ENGINES: typing.Any
1789
- bl_context: typing.Any
1790
- bl_label: typing.Any
1791
- bl_options: typing.Any
1792
- bl_region_type: typing.Any
1793
- bl_rna: typing.Any
1794
- bl_space_type: typing.Any
1795
- id_data: typing.Any
3287
+ def values(self):
3288
+ """ """
3289
+ ...
1796
3290
 
1797
- def append(self, draw_func):
1798
- """
3291
+ class MeshButtonsPanel:
3292
+ """ """
1799
3293
 
1800
- :param draw_func:
1801
- :type draw_func:
1802
- """
1803
- ...
3294
+ bl_context: typing.Any
3295
+ """ """
1804
3296
 
1805
- def as_pointer(self): ...
1806
- def bl_rna_get_subclass(self): ...
1807
- def bl_rna_get_subclass_py(self): ...
1808
- def draw(self, context):
1809
- """
3297
+ bl_region_type: typing.Any
3298
+ """ """
3299
+
3300
+ bl_space_type: typing.Any
3301
+ """ """
1810
3302
 
1811
- :param self:
1812
- :type self:
1813
- :param context:
1814
- :type context:
1815
- """
1816
- ...
1817
-
1818
- def driver_add(self): ...
1819
- def driver_remove(self): ...
1820
- def get(self): ...
1821
- def id_properties_clear(self): ...
1822
- def id_properties_ensure(self): ...
1823
- def id_properties_ui(self): ...
1824
- def is_extended(self): ...
1825
- def is_property_hidden(self): ...
1826
- def is_property_overridable_library(self): ...
1827
- def is_property_readonly(self): ...
1828
- def is_property_set(self): ...
1829
- def items(self): ...
1830
- def keyframe_delete(self): ...
1831
- def keyframe_insert(self): ...
1832
- def keys(self): ...
1833
- def path_from_id(self): ...
1834
- def path_resolve(self): ...
1835
3303
  def poll(self, context):
1836
3304
  """
1837
3305
 
1838
3306
  :param context:
1839
- :type context:
1840
3307
  """
1841
3308
  ...
1842
3309
 
1843
- def pop(self): ...
1844
- def prepend(self, draw_func):
1845
- """
3310
+ class ColorAttributesListBase:
3311
+ """ """
1846
3312
 
1847
- :param draw_func:
1848
- :type draw_func:
1849
- """
1850
- ...
3313
+ display_domain_names: typing.Any
3314
+ """ """
1851
3315
 
1852
- def property_overridable_library_set(self): ...
1853
- def property_unset(self): ...
1854
- def remove(self, draw_func):
3316
+ def filter_items(self, _context, data, property):
1855
3317
  """
1856
3318
 
1857
- :param draw_func:
1858
- :type draw_func:
3319
+ :param _context:
3320
+ :param data:
3321
+ :param property:
1859
3322
  """
1860
3323
  ...
1861
3324
 
1862
- def type_recast(self): ...
1863
- def values(self): ...
3325
+ def draw_attribute_warnings(context, layout):
3326
+ """ """
1864
3327
 
1865
- def draw_attribute_warnings(context, layout): ...
3328
+ ...