fake-bpy-module 20240224__py3-none-any.whl → 20240326__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,38 +1,125 @@
1
1
  import typing
2
- import bl_ui.properties_animviz
3
2
  import bpy_types
4
- import rna_prop_ui
5
3
 
6
4
  GenericType = typing.TypeVar("GenericType")
7
5
 
8
- class ARMATURE_MT_collection_context_menu(bpy_types.Menu, bpy_types._GenericUI):
6
+ class ARMATURE_MT_collection_context_menu(bpy_types._GenericUI):
7
+ """ """
8
+
9
9
  bl_label: typing.Any
10
+ """ """
11
+
10
12
  bl_rna: typing.Any
13
+ """ """
14
+
11
15
  id_data: typing.Any
16
+ """ """
17
+
18
+ def append(self, draw_func):
19
+ """
20
+
21
+ :param draw_func:
22
+ """
23
+ ...
24
+
25
+ def as_pointer(self):
26
+ """ """
27
+ ...
28
+
29
+ def bl_rna_get_subclass(self):
30
+ """ """
31
+ ...
32
+
33
+ def bl_rna_get_subclass_py(self):
34
+ """ """
35
+ ...
36
+
37
+ def draw(self, context):
38
+ """
39
+
40
+ :param context:
41
+ """
42
+ ...
43
+
44
+ def draw_collapsible(self, context, layout):
45
+ """
46
+
47
+ :param context:
48
+ :param layout:
49
+ """
50
+ ...
51
+
52
+ def draw_preset(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
+ ...
12
122
 
13
- def append(self, draw_func): ...
14
- def as_pointer(self): ...
15
- def bl_rna_get_subclass(self): ...
16
- def bl_rna_get_subclass_py(self): ...
17
- def draw(self, context): ...
18
- def draw_collapsible(self, context, layout): ...
19
- def draw_preset(self, _context): ...
20
- def driver_add(self): ...
21
- def driver_remove(self): ...
22
- def get(self): ...
23
- def id_properties_clear(self): ...
24
- def id_properties_ensure(self): ...
25
- def id_properties_ui(self): ...
26
- def is_extended(self): ...
27
- def is_property_hidden(self): ...
28
- def is_property_overridable_library(self): ...
29
- def is_property_readonly(self): ...
30
- def is_property_set(self): ...
31
- def items(self): ...
32
- def keyframe_delete(self): ...
33
- def keyframe_insert(self): ...
34
- def keys(self): ...
35
- def path_from_id(self): ...
36
123
  def path_menu(
37
124
  self,
38
125
  searchpaths,
@@ -43,44 +130,175 @@ class ARMATURE_MT_collection_context_menu(bpy_types.Menu, bpy_types._GenericUI):
43
130
  filter_path,
44
131
  display_name,
45
132
  add_operator,
46
- ): ...
47
- def path_resolve(self): ...
48
- def pop(self): ...
49
- def prepend(self, draw_func): ...
50
- def property_overridable_library_set(self): ...
51
- def property_unset(self): ...
52
- def remove(self, draw_func): ...
53
- def type_recast(self): ...
54
- def values(self): ...
55
-
56
- class ARMATURE_MT_collection_tree_context_menu(bpy_types.Menu, bpy_types._GenericUI):
133
+ ):
134
+ """
135
+
136
+ :param searchpaths:
137
+ :param operator:
138
+ :param props_default:
139
+ :param prop_filepath:
140
+ :param filter_ext:
141
+ :param filter_path:
142
+ :param display_name:
143
+ :param add_operator:
144
+ """
145
+ ...
146
+
147
+ def path_resolve(self):
148
+ """ """
149
+ ...
150
+
151
+ def pop(self):
152
+ """ """
153
+ ...
154
+
155
+ def prepend(self, draw_func):
156
+ """
157
+
158
+ :param draw_func:
159
+ """
160
+ ...
161
+
162
+ def property_overridable_library_set(self):
163
+ """ """
164
+ ...
165
+
166
+ def property_unset(self):
167
+ """ """
168
+ ...
169
+
170
+ def remove(self, draw_func):
171
+ """
172
+
173
+ :param draw_func:
174
+ """
175
+ ...
176
+
177
+ def type_recast(self):
178
+ """ """
179
+ ...
180
+
181
+ def values(self):
182
+ """ """
183
+ ...
184
+
185
+ class ARMATURE_MT_collection_tree_context_menu(bpy_types._GenericUI):
186
+ """ """
187
+
57
188
  bl_label: typing.Any
189
+ """ """
190
+
58
191
  bl_rna: typing.Any
192
+ """ """
193
+
59
194
  id_data: typing.Any
195
+ """ """
196
+
197
+ def append(self, draw_func):
198
+ """
199
+
200
+ :param draw_func:
201
+ """
202
+ ...
203
+
204
+ def as_pointer(self):
205
+ """ """
206
+ ...
207
+
208
+ def bl_rna_get_subclass(self):
209
+ """ """
210
+ ...
211
+
212
+ def bl_rna_get_subclass_py(self):
213
+ """ """
214
+ ...
215
+
216
+ def draw(self, context):
217
+ """
218
+
219
+ :param context:
220
+ """
221
+ ...
222
+
223
+ def draw_collapsible(self, context, layout):
224
+ """
225
+
226
+ :param context:
227
+ :param layout:
228
+ """
229
+ ...
230
+
231
+ def draw_preset(self, _context):
232
+ """
233
+
234
+ :param _context:
235
+ """
236
+ ...
237
+
238
+ def driver_add(self):
239
+ """ """
240
+ ...
241
+
242
+ def driver_remove(self):
243
+ """ """
244
+ ...
245
+
246
+ def get(self):
247
+ """ """
248
+ ...
249
+
250
+ def id_properties_clear(self):
251
+ """ """
252
+ ...
253
+
254
+ def id_properties_ensure(self):
255
+ """ """
256
+ ...
257
+
258
+ def id_properties_ui(self):
259
+ """ """
260
+ ...
261
+
262
+ def is_extended(self):
263
+ """ """
264
+ ...
265
+
266
+ def is_property_hidden(self):
267
+ """ """
268
+ ...
269
+
270
+ def is_property_overridable_library(self):
271
+ """ """
272
+ ...
273
+
274
+ def is_property_readonly(self):
275
+ """ """
276
+ ...
277
+
278
+ def is_property_set(self):
279
+ """ """
280
+ ...
281
+
282
+ def items(self):
283
+ """ """
284
+ ...
285
+
286
+ def keyframe_delete(self):
287
+ """ """
288
+ ...
289
+
290
+ def keyframe_insert(self):
291
+ """ """
292
+ ...
293
+
294
+ def keys(self):
295
+ """ """
296
+ ...
297
+
298
+ def path_from_id(self):
299
+ """ """
300
+ ...
60
301
 
61
- def append(self, draw_func): ...
62
- def as_pointer(self): ...
63
- def bl_rna_get_subclass(self): ...
64
- def bl_rna_get_subclass_py(self): ...
65
- def draw(self, context): ...
66
- def draw_collapsible(self, context, layout): ...
67
- def draw_preset(self, _context): ...
68
- def driver_add(self): ...
69
- def driver_remove(self): ...
70
- def get(self): ...
71
- def id_properties_clear(self): ...
72
- def id_properties_ensure(self): ...
73
- def id_properties_ui(self): ...
74
- def is_extended(self): ...
75
- def is_property_hidden(self): ...
76
- def is_property_overridable_library(self): ...
77
- def is_property_readonly(self): ...
78
- def is_property_set(self): ...
79
- def items(self): ...
80
- def keyframe_delete(self): ...
81
- def keyframe_insert(self): ...
82
- def keys(self): ...
83
- def path_from_id(self): ...
84
302
  def path_menu(
85
303
  self,
86
304
  searchpaths,
@@ -91,451 +309,1690 @@ class ARMATURE_MT_collection_tree_context_menu(bpy_types.Menu, bpy_types._Generi
91
309
  filter_path,
92
310
  display_name,
93
311
  add_operator,
94
- ): ...
95
- def path_resolve(self): ...
96
- def pop(self): ...
97
- def prepend(self, draw_func): ...
98
- def property_overridable_library_set(self): ...
99
- def property_unset(self): ...
100
- def remove(self, draw_func): ...
101
- def type_recast(self): ...
102
- def values(self): ...
312
+ ):
313
+ """
314
+
315
+ :param searchpaths:
316
+ :param operator:
317
+ :param props_default:
318
+ :param prop_filepath:
319
+ :param filter_ext:
320
+ :param filter_path:
321
+ :param display_name:
322
+ :param add_operator:
323
+ """
324
+ ...
325
+
326
+ def path_resolve(self):
327
+ """ """
328
+ ...
329
+
330
+ def pop(self):
331
+ """ """
332
+ ...
333
+
334
+ def prepend(self, draw_func):
335
+ """
336
+
337
+ :param draw_func:
338
+ """
339
+ ...
340
+
341
+ def property_overridable_library_set(self):
342
+ """ """
343
+ ...
344
+
345
+ def property_unset(self):
346
+ """ """
347
+ ...
348
+
349
+ def remove(self, draw_func):
350
+ """
351
+
352
+ :param draw_func:
353
+ """
354
+ ...
355
+
356
+ def type_recast(self):
357
+ """ """
358
+ ...
359
+
360
+ def values(self):
361
+ """ """
362
+ ...
103
363
 
104
364
  class ArmatureButtonsPanel:
365
+ """ """
366
+
105
367
  bl_context: typing.Any
368
+ """ """
369
+
106
370
  bl_region_type: typing.Any
371
+ """ """
372
+
107
373
  bl_space_type: typing.Any
374
+ """ """
108
375
 
109
- def poll(self, context): ...
376
+ def poll(self, context):
377
+ """
110
378
 
111
- class DATA_PT_motion_paths(
112
- bl_ui.properties_animviz.MotionPathButtonsPanel,
113
- bpy_types.Panel,
114
- bpy_types._GenericUI,
115
- ):
116
- bl_context: typing.Any
117
- bl_label: typing.Any
118
- bl_options: typing.Any
119
- bl_region_type: typing.Any
120
- bl_rna: typing.Any
121
- bl_space_type: typing.Any
122
- id_data: typing.Any
379
+ :param context:
380
+ """
381
+ ...
382
+
383
+ class DATA_PT_bone_collections(bpy_types._GenericUI):
384
+ """ """
123
385
 
124
- def append(self, draw_func): ...
125
- def as_pointer(self): ...
126
- def bl_rna_get_subclass(self): ...
127
- def bl_rna_get_subclass_py(self): ...
128
- def draw(self, context): ...
129
- def draw_settings(self, _context, avs, mpath, bones): ...
130
- def driver_add(self): ...
131
- def driver_remove(self): ...
132
- def get(self): ...
133
- def id_properties_clear(self): ...
134
- def id_properties_ensure(self): ...
135
- def id_properties_ui(self): ...
136
- def is_extended(self): ...
137
- def is_property_hidden(self): ...
138
- def is_property_overridable_library(self): ...
139
- def is_property_readonly(self): ...
140
- def is_property_set(self): ...
141
- def items(self): ...
142
- def keyframe_delete(self): ...
143
- def keyframe_insert(self): ...
144
- def keys(self): ...
145
- def path_from_id(self): ...
146
- def path_resolve(self): ...
147
- def poll(self, context): ...
148
- def pop(self): ...
149
- def prepend(self, draw_func): ...
150
- def property_overridable_library_set(self): ...
151
- def property_unset(self): ...
152
- def remove(self, draw_func): ...
153
- def type_recast(self): ...
154
- def values(self): ...
155
-
156
- class DATA_PT_motion_paths_display(
157
- bl_ui.properties_animviz.MotionPathButtonsPanel_display,
158
- bpy_types.Panel,
159
- bpy_types._GenericUI,
160
- ):
161
386
  bl_context: typing.Any
387
+ """ """
388
+
162
389
  bl_label: typing.Any
163
- bl_options: typing.Any
164
- bl_parent_id: typing.Any
390
+ """ """
391
+
165
392
  bl_region_type: typing.Any
166
- bl_rna: typing.Any
167
- bl_space_type: typing.Any
168
- id_data: typing.Any
393
+ """ """
169
394
 
170
- def append(self, draw_func): ...
171
- def as_pointer(self): ...
172
- def bl_rna_get_subclass(self): ...
173
- def bl_rna_get_subclass_py(self): ...
174
- def draw(self, context): ...
175
- def draw_settings(self, _context, avs, mpath, bones): ...
176
- def driver_add(self): ...
177
- def driver_remove(self): ...
178
- def get(self): ...
179
- def id_properties_clear(self): ...
180
- def id_properties_ensure(self): ...
181
- def id_properties_ui(self): ...
182
- def is_extended(self): ...
183
- def is_property_hidden(self): ...
184
- def is_property_overridable_library(self): ...
185
- def is_property_readonly(self): ...
186
- def is_property_set(self): ...
187
- def items(self): ...
188
- def keyframe_delete(self): ...
189
- def keyframe_insert(self): ...
190
- def keys(self): ...
191
- def path_from_id(self): ...
192
- def path_resolve(self): ...
193
- def poll(self, context): ...
194
- def pop(self): ...
195
- def prepend(self, draw_func): ...
196
- def property_overridable_library_set(self): ...
197
- def property_unset(self): ...
198
- def remove(self, draw_func): ...
199
- def type_recast(self): ...
200
- def values(self): ...
201
-
202
- class DATA_UL_bone_collections(bpy_types.UIList, bpy_types._GenericUI):
203
395
  bl_rna: typing.Any
204
- id_data: typing.Any
396
+ """ """
205
397
 
206
- def append(self, draw_func): ...
207
- def as_pointer(self): ...
208
- def bl_rna_get_subclass(self): ...
209
- def bl_rna_get_subclass_py(self): ...
210
- def draw_item(
211
- self,
212
- _context,
213
- layout,
214
- armature,
215
- bcoll,
216
- _icon,
217
- _active_data,
218
- _active_propname,
219
- _index,
220
- ): ...
221
- def driver_add(self): ...
222
- def driver_remove(self): ...
223
- def get(self): ...
224
- def id_properties_clear(self): ...
225
- def id_properties_ensure(self): ...
226
- def id_properties_ui(self): ...
227
- def is_extended(self): ...
228
- def is_property_hidden(self): ...
229
- def is_property_overridable_library(self): ...
230
- def is_property_readonly(self): ...
231
- def is_property_set(self): ...
232
- def items(self): ...
233
- def keyframe_delete(self): ...
234
- def keyframe_insert(self): ...
235
- def keys(self): ...
236
- def path_from_id(self): ...
237
- def path_resolve(self): ...
238
- def pop(self): ...
239
- def prepend(self, draw_func): ...
240
- def property_overridable_library_set(self): ...
241
- def property_unset(self): ...
242
- def remove(self, draw_func): ...
243
- def type_recast(self): ...
244
- def values(self): ...
245
-
246
- class DATA_PT_bone_collections(
247
- ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
248
- ):
249
- bl_context: typing.Any
250
- bl_label: typing.Any
251
- bl_region_type: typing.Any
252
- bl_rna: typing.Any
253
398
  bl_space_type: typing.Any
399
+ """ """
400
+
254
401
  id_data: typing.Any
402
+ """ """
403
+
404
+ def append(self, draw_func):
405
+ """
406
+
407
+ :param draw_func:
408
+ """
409
+ ...
410
+
411
+ def as_pointer(self):
412
+ """ """
413
+ ...
414
+
415
+ def bl_rna_get_subclass(self):
416
+ """ """
417
+ ...
418
+
419
+ def bl_rna_get_subclass_py(self):
420
+ """ """
421
+ ...
422
+
423
+ def draw(self, context):
424
+ """
425
+
426
+ :param context:
427
+ """
428
+ ...
429
+
430
+ def driver_add(self):
431
+ """ """
432
+ ...
433
+
434
+ def driver_remove(self):
435
+ """ """
436
+ ...
437
+
438
+ def get(self):
439
+ """ """
440
+ ...
441
+
442
+ def id_properties_clear(self):
443
+ """ """
444
+ ...
445
+
446
+ def id_properties_ensure(self):
447
+ """ """
448
+ ...
449
+
450
+ def id_properties_ui(self):
451
+ """ """
452
+ ...
453
+
454
+ def is_extended(self):
455
+ """ """
456
+ ...
457
+
458
+ def is_property_hidden(self):
459
+ """ """
460
+ ...
461
+
462
+ def is_property_overridable_library(self):
463
+ """ """
464
+ ...
465
+
466
+ def is_property_readonly(self):
467
+ """ """
468
+ ...
469
+
470
+ def is_property_set(self):
471
+ """ """
472
+ ...
473
+
474
+ def items(self):
475
+ """ """
476
+ ...
477
+
478
+ def keyframe_delete(self):
479
+ """ """
480
+ ...
481
+
482
+ def keyframe_insert(self):
483
+ """ """
484
+ ...
485
+
486
+ def keys(self):
487
+ """ """
488
+ ...
489
+
490
+ def path_from_id(self):
491
+ """ """
492
+ ...
493
+
494
+ def path_resolve(self):
495
+ """ """
496
+ ...
497
+
498
+ def poll(self, context):
499
+ """
500
+
501
+ :param context:
502
+ """
503
+ ...
504
+
505
+ def pop(self):
506
+ """ """
507
+ ...
508
+
509
+ def prepend(self, draw_func):
510
+ """
511
+
512
+ :param draw_func:
513
+ """
514
+ ...
515
+
516
+ def property_overridable_library_set(self):
517
+ """ """
518
+ ...
519
+
520
+ def property_unset(self):
521
+ """ """
522
+ ...
523
+
524
+ def remove(self, draw_func):
525
+ """
526
+
527
+ :param draw_func:
528
+ """
529
+ ...
530
+
531
+ def type_recast(self):
532
+ """ """
533
+ ...
534
+
535
+ def values(self):
536
+ """ """
537
+ ...
538
+
539
+ class DATA_PT_context_arm(bpy_types._GenericUI):
540
+ """ """
255
541
 
256
- def append(self, draw_func): ...
257
- def as_pointer(self): ...
258
- def bl_rna_get_subclass(self): ...
259
- def bl_rna_get_subclass_py(self): ...
260
- def draw(self, context): ...
261
- def driver_add(self): ...
262
- def driver_remove(self): ...
263
- def get(self): ...
264
- def id_properties_clear(self): ...
265
- def id_properties_ensure(self): ...
266
- def id_properties_ui(self): ...
267
- def is_extended(self): ...
268
- def is_property_hidden(self): ...
269
- def is_property_overridable_library(self): ...
270
- def is_property_readonly(self): ...
271
- def is_property_set(self): ...
272
- def items(self): ...
273
- def keyframe_delete(self): ...
274
- def keyframe_insert(self): ...
275
- def keys(self): ...
276
- def path_from_id(self): ...
277
- def path_resolve(self): ...
278
- def poll(self, context): ...
279
- def pop(self): ...
280
- def prepend(self, draw_func): ...
281
- def property_overridable_library_set(self): ...
282
- def property_unset(self): ...
283
- def remove(self, draw_func): ...
284
- def type_recast(self): ...
285
- def values(self): ...
286
-
287
- class DATA_PT_context_arm(ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
288
542
  bl_context: typing.Any
543
+ """ """
544
+
289
545
  bl_label: typing.Any
546
+ """ """
547
+
290
548
  bl_options: typing.Any
549
+ """ """
550
+
291
551
  bl_region_type: typing.Any
552
+ """ """
553
+
292
554
  bl_rna: typing.Any
555
+ """ """
556
+
293
557
  bl_space_type: typing.Any
558
+ """ """
559
+
294
560
  id_data: typing.Any
561
+ """ """
562
+
563
+ def append(self, draw_func):
564
+ """
565
+
566
+ :param draw_func:
567
+ """
568
+ ...
569
+
570
+ def as_pointer(self):
571
+ """ """
572
+ ...
573
+
574
+ def bl_rna_get_subclass(self):
575
+ """ """
576
+ ...
577
+
578
+ def bl_rna_get_subclass_py(self):
579
+ """ """
580
+ ...
581
+
582
+ def draw(self, context):
583
+ """
584
+
585
+ :param context:
586
+ """
587
+ ...
588
+
589
+ def driver_add(self):
590
+ """ """
591
+ ...
592
+
593
+ def driver_remove(self):
594
+ """ """
595
+ ...
596
+
597
+ def get(self):
598
+ """ """
599
+ ...
600
+
601
+ def id_properties_clear(self):
602
+ """ """
603
+ ...
604
+
605
+ def id_properties_ensure(self):
606
+ """ """
607
+ ...
608
+
609
+ def id_properties_ui(self):
610
+ """ """
611
+ ...
612
+
613
+ def is_extended(self):
614
+ """ """
615
+ ...
616
+
617
+ def is_property_hidden(self):
618
+ """ """
619
+ ...
620
+
621
+ def is_property_overridable_library(self):
622
+ """ """
623
+ ...
624
+
625
+ def is_property_readonly(self):
626
+ """ """
627
+ ...
628
+
629
+ def is_property_set(self):
630
+ """ """
631
+ ...
632
+
633
+ def items(self):
634
+ """ """
635
+ ...
636
+
637
+ def keyframe_delete(self):
638
+ """ """
639
+ ...
640
+
641
+ def keyframe_insert(self):
642
+ """ """
643
+ ...
644
+
645
+ def keys(self):
646
+ """ """
647
+ ...
648
+
649
+ def path_from_id(self):
650
+ """ """
651
+ ...
652
+
653
+ def path_resolve(self):
654
+ """ """
655
+ ...
656
+
657
+ def poll(self, context):
658
+ """
659
+
660
+ :param context:
661
+ """
662
+ ...
663
+
664
+ def pop(self):
665
+ """ """
666
+ ...
667
+
668
+ def prepend(self, draw_func):
669
+ """
670
+
671
+ :param draw_func:
672
+ """
673
+ ...
674
+
675
+ def property_overridable_library_set(self):
676
+ """ """
677
+ ...
678
+
679
+ def property_unset(self):
680
+ """ """
681
+ ...
682
+
683
+ def remove(self, draw_func):
684
+ """
685
+
686
+ :param draw_func:
687
+ """
688
+ ...
689
+
690
+ def type_recast(self):
691
+ """ """
692
+ ...
693
+
694
+ def values(self):
695
+ """ """
696
+ ...
697
+
698
+ class DATA_PT_custom_props_arm(bpy_types._GenericUI):
699
+ """ """
295
700
 
296
- def append(self, draw_func): ...
297
- def as_pointer(self): ...
298
- def bl_rna_get_subclass(self): ...
299
- def bl_rna_get_subclass_py(self): ...
300
- def draw(self, context): ...
301
- def driver_add(self): ...
302
- def driver_remove(self): ...
303
- def get(self): ...
304
- def id_properties_clear(self): ...
305
- def id_properties_ensure(self): ...
306
- def id_properties_ui(self): ...
307
- def is_extended(self): ...
308
- def is_property_hidden(self): ...
309
- def is_property_overridable_library(self): ...
310
- def is_property_readonly(self): ...
311
- def is_property_set(self): ...
312
- def items(self): ...
313
- def keyframe_delete(self): ...
314
- def keyframe_insert(self): ...
315
- def keys(self): ...
316
- def path_from_id(self): ...
317
- def path_resolve(self): ...
318
- def poll(self, context): ...
319
- def pop(self): ...
320
- def prepend(self, draw_func): ...
321
- def property_overridable_library_set(self): ...
322
- def property_unset(self): ...
323
- def remove(self, draw_func): ...
324
- def type_recast(self): ...
325
- def values(self): ...
326
-
327
- class DATA_PT_custom_props_arm(
328
- ArmatureButtonsPanel,
329
- rna_prop_ui.PropertyPanel,
330
- bpy_types.Panel,
331
- bpy_types._GenericUI,
332
- ):
333
701
  COMPAT_ENGINES: typing.Any
702
+ """ """
703
+
334
704
  bl_context: typing.Any
705
+ """ """
706
+
335
707
  bl_label: typing.Any
708
+ """ """
709
+
336
710
  bl_options: typing.Any
711
+ """ """
712
+
337
713
  bl_order: typing.Any
714
+ """ """
715
+
338
716
  bl_region_type: typing.Any
717
+ """ """
718
+
339
719
  bl_rna: typing.Any
720
+ """ """
721
+
340
722
  bl_space_type: typing.Any
723
+ """ """
724
+
341
725
  id_data: typing.Any
726
+ """ """
727
+
728
+ def append(self, draw_func):
729
+ """
730
+
731
+ :param draw_func:
732
+ """
733
+ ...
734
+
735
+ def as_pointer(self):
736
+ """ """
737
+ ...
738
+
739
+ def bl_rna_get_subclass(self):
740
+ """ """
741
+ ...
742
+
743
+ def bl_rna_get_subclass_py(self):
744
+ """ """
745
+ ...
746
+
747
+ def draw(self, context):
748
+ """
749
+
750
+ :param context:
751
+ """
752
+ ...
753
+
754
+ def driver_add(self):
755
+ """ """
756
+ ...
757
+
758
+ def driver_remove(self):
759
+ """ """
760
+ ...
761
+
762
+ def get(self):
763
+ """ """
764
+ ...
765
+
766
+ def id_properties_clear(self):
767
+ """ """
768
+ ...
769
+
770
+ def id_properties_ensure(self):
771
+ """ """
772
+ ...
773
+
774
+ def id_properties_ui(self):
775
+ """ """
776
+ ...
777
+
778
+ def is_extended(self):
779
+ """ """
780
+ ...
781
+
782
+ def is_property_hidden(self):
783
+ """ """
784
+ ...
785
+
786
+ def is_property_overridable_library(self):
787
+ """ """
788
+ ...
789
+
790
+ def is_property_readonly(self):
791
+ """ """
792
+ ...
793
+
794
+ def is_property_set(self):
795
+ """ """
796
+ ...
797
+
798
+ def items(self):
799
+ """ """
800
+ ...
801
+
802
+ def keyframe_delete(self):
803
+ """ """
804
+ ...
805
+
806
+ def keyframe_insert(self):
807
+ """ """
808
+ ...
809
+
810
+ def keys(self):
811
+ """ """
812
+ ...
813
+
814
+ def path_from_id(self):
815
+ """ """
816
+ ...
817
+
818
+ def path_resolve(self):
819
+ """ """
820
+ ...
821
+
822
+ def poll(self, context):
823
+ """
824
+
825
+ :param context:
826
+ """
827
+ ...
828
+
829
+ def pop(self):
830
+ """ """
831
+ ...
832
+
833
+ def prepend(self, draw_func):
834
+ """
835
+
836
+ :param draw_func:
837
+ """
838
+ ...
839
+
840
+ def property_overridable_library_set(self):
841
+ """ """
842
+ ...
843
+
844
+ def property_unset(self):
845
+ """ """
846
+ ...
847
+
848
+ def remove(self, draw_func):
849
+ """
850
+
851
+ :param draw_func:
852
+ """
853
+ ...
854
+
855
+ def type_recast(self):
856
+ """ """
857
+ ...
858
+
859
+ def values(self):
860
+ """ """
861
+ ...
862
+
863
+ class DATA_PT_custom_props_bcoll(bpy_types._GenericUI):
864
+ """ """
342
865
 
343
- def append(self, draw_func): ...
344
- def as_pointer(self): ...
345
- def bl_rna_get_subclass(self): ...
346
- def bl_rna_get_subclass_py(self): ...
347
- def draw(self, context): ...
348
- def driver_add(self): ...
349
- def driver_remove(self): ...
350
- def get(self): ...
351
- def id_properties_clear(self): ...
352
- def id_properties_ensure(self): ...
353
- def id_properties_ui(self): ...
354
- def is_extended(self): ...
355
- def is_property_hidden(self): ...
356
- def is_property_overridable_library(self): ...
357
- def is_property_readonly(self): ...
358
- def is_property_set(self): ...
359
- def items(self): ...
360
- def keyframe_delete(self): ...
361
- def keyframe_insert(self): ...
362
- def keys(self): ...
363
- def path_from_id(self): ...
364
- def path_resolve(self): ...
365
- def poll(self, context): ...
366
- def pop(self): ...
367
- def prepend(self, draw_func): ...
368
- def property_overridable_library_set(self): ...
369
- def property_unset(self): ...
370
- def remove(self, draw_func): ...
371
- def type_recast(self): ...
372
- def values(self): ...
373
-
374
- class DATA_PT_custom_props_bcoll(
375
- ArmatureButtonsPanel,
376
- rna_prop_ui.PropertyPanel,
377
- bpy_types.Panel,
378
- bpy_types._GenericUI,
379
- ):
380
866
  COMPAT_ENGINES: typing.Any
867
+ """ """
868
+
381
869
  bl_context: typing.Any
870
+ """ """
871
+
382
872
  bl_label: typing.Any
873
+ """ """
874
+
383
875
  bl_options: typing.Any
876
+ """ """
877
+
384
878
  bl_order: typing.Any
879
+ """ """
880
+
385
881
  bl_parent_id: typing.Any
386
- bl_region_type: typing.Any
387
- bl_rna: typing.Any
388
- bl_space_type: typing.Any
389
- id_data: typing.Any
882
+ """ """
390
883
 
391
- def append(self, draw_func): ...
392
- def as_pointer(self): ...
393
- def bl_rna_get_subclass(self): ...
394
- def bl_rna_get_subclass_py(self): ...
395
- def draw(self, context): ...
396
- def driver_add(self): ...
397
- def driver_remove(self): ...
398
- def get(self): ...
399
- def id_properties_clear(self): ...
400
- def id_properties_ensure(self): ...
401
- def id_properties_ui(self): ...
402
- def is_extended(self): ...
403
- def is_property_hidden(self): ...
404
- def is_property_overridable_library(self): ...
405
- def is_property_readonly(self): ...
406
- def is_property_set(self): ...
407
- def items(self): ...
408
- def keyframe_delete(self): ...
409
- def keyframe_insert(self): ...
410
- def keys(self): ...
411
- def path_from_id(self): ...
412
- def path_resolve(self): ...
413
- def poll(self, context): ...
414
- def pop(self): ...
415
- def prepend(self, draw_func): ...
416
- def property_overridable_library_set(self): ...
417
- def property_unset(self): ...
418
- def remove(self, draw_func): ...
419
- def type_recast(self): ...
420
- def values(self): ...
421
-
422
- class DATA_PT_display(ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
423
- bl_context: typing.Any
424
- bl_label: typing.Any
425
- bl_options: typing.Any
426
884
  bl_region_type: typing.Any
885
+ """ """
886
+
427
887
  bl_rna: typing.Any
888
+ """ """
889
+
428
890
  bl_space_type: typing.Any
891
+ """ """
892
+
429
893
  id_data: typing.Any
894
+ """ """
895
+
896
+ def append(self, draw_func):
897
+ """
898
+
899
+ :param draw_func:
900
+ """
901
+ ...
902
+
903
+ def as_pointer(self):
904
+ """ """
905
+ ...
906
+
907
+ def bl_rna_get_subclass(self):
908
+ """ """
909
+ ...
910
+
911
+ def bl_rna_get_subclass_py(self):
912
+ """ """
913
+ ...
914
+
915
+ def draw(self, context):
916
+ """
917
+
918
+ :param context:
919
+ """
920
+ ...
921
+
922
+ def driver_add(self):
923
+ """ """
924
+ ...
925
+
926
+ def driver_remove(self):
927
+ """ """
928
+ ...
929
+
930
+ def get(self):
931
+ """ """
932
+ ...
933
+
934
+ def id_properties_clear(self):
935
+ """ """
936
+ ...
937
+
938
+ def id_properties_ensure(self):
939
+ """ """
940
+ ...
941
+
942
+ def id_properties_ui(self):
943
+ """ """
944
+ ...
945
+
946
+ def is_extended(self):
947
+ """ """
948
+ ...
949
+
950
+ def is_property_hidden(self):
951
+ """ """
952
+ ...
953
+
954
+ def is_property_overridable_library(self):
955
+ """ """
956
+ ...
957
+
958
+ def is_property_readonly(self):
959
+ """ """
960
+ ...
961
+
962
+ def is_property_set(self):
963
+ """ """
964
+ ...
965
+
966
+ def items(self):
967
+ """ """
968
+ ...
969
+
970
+ def keyframe_delete(self):
971
+ """ """
972
+ ...
973
+
974
+ def keyframe_insert(self):
975
+ """ """
976
+ ...
977
+
978
+ def keys(self):
979
+ """ """
980
+ ...
981
+
982
+ def path_from_id(self):
983
+ """ """
984
+ ...
985
+
986
+ def path_resolve(self):
987
+ """ """
988
+ ...
989
+
990
+ def poll(self, context):
991
+ """
992
+
993
+ :param context:
994
+ """
995
+ ...
996
+
997
+ def pop(self):
998
+ """ """
999
+ ...
1000
+
1001
+ def prepend(self, draw_func):
1002
+ """
1003
+
1004
+ :param draw_func:
1005
+ """
1006
+ ...
1007
+
1008
+ def property_overridable_library_set(self):
1009
+ """ """
1010
+ ...
1011
+
1012
+ def property_unset(self):
1013
+ """ """
1014
+ ...
1015
+
1016
+ def remove(self, draw_func):
1017
+ """
1018
+
1019
+ :param draw_func:
1020
+ """
1021
+ ...
1022
+
1023
+ def type_recast(self):
1024
+ """ """
1025
+ ...
1026
+
1027
+ def values(self):
1028
+ """ """
1029
+ ...
1030
+
1031
+ class DATA_PT_display(bpy_types._GenericUI):
1032
+ """ """
1033
+
1034
+ bl_context: typing.Any
1035
+ """ """
1036
+
1037
+ bl_label: typing.Any
1038
+ """ """
1039
+
1040
+ bl_options: typing.Any
1041
+ """ """
1042
+
1043
+ bl_region_type: typing.Any
1044
+ """ """
1045
+
1046
+ bl_rna: typing.Any
1047
+ """ """
1048
+
1049
+ bl_space_type: typing.Any
1050
+ """ """
1051
+
1052
+ id_data: typing.Any
1053
+ """ """
1054
+
1055
+ def append(self, draw_func):
1056
+ """
1057
+
1058
+ :param draw_func:
1059
+ """
1060
+ ...
1061
+
1062
+ def as_pointer(self):
1063
+ """ """
1064
+ ...
1065
+
1066
+ def bl_rna_get_subclass(self):
1067
+ """ """
1068
+ ...
1069
+
1070
+ def bl_rna_get_subclass_py(self):
1071
+ """ """
1072
+ ...
1073
+
1074
+ def draw(self, context):
1075
+ """
1076
+
1077
+ :param context:
1078
+ """
1079
+ ...
1080
+
1081
+ def driver_add(self):
1082
+ """ """
1083
+ ...
1084
+
1085
+ def driver_remove(self):
1086
+ """ """
1087
+ ...
1088
+
1089
+ def get(self):
1090
+ """ """
1091
+ ...
1092
+
1093
+ def id_properties_clear(self):
1094
+ """ """
1095
+ ...
1096
+
1097
+ def id_properties_ensure(self):
1098
+ """ """
1099
+ ...
1100
+
1101
+ def id_properties_ui(self):
1102
+ """ """
1103
+ ...
1104
+
1105
+ def is_extended(self):
1106
+ """ """
1107
+ ...
1108
+
1109
+ def is_property_hidden(self):
1110
+ """ """
1111
+ ...
1112
+
1113
+ def is_property_overridable_library(self):
1114
+ """ """
1115
+ ...
1116
+
1117
+ def is_property_readonly(self):
1118
+ """ """
1119
+ ...
1120
+
1121
+ def is_property_set(self):
1122
+ """ """
1123
+ ...
1124
+
1125
+ def items(self):
1126
+ """ """
1127
+ ...
1128
+
1129
+ def keyframe_delete(self):
1130
+ """ """
1131
+ ...
1132
+
1133
+ def keyframe_insert(self):
1134
+ """ """
1135
+ ...
1136
+
1137
+ def keys(self):
1138
+ """ """
1139
+ ...
1140
+
1141
+ def path_from_id(self):
1142
+ """ """
1143
+ ...
1144
+
1145
+ def path_resolve(self):
1146
+ """ """
1147
+ ...
1148
+
1149
+ def poll(self, context):
1150
+ """
1151
+
1152
+ :param context:
1153
+ """
1154
+ ...
1155
+
1156
+ def pop(self):
1157
+ """ """
1158
+ ...
1159
+
1160
+ def prepend(self, draw_func):
1161
+ """
1162
+
1163
+ :param draw_func:
1164
+ """
1165
+ ...
1166
+
1167
+ def property_overridable_library_set(self):
1168
+ """ """
1169
+ ...
1170
+
1171
+ def property_unset(self):
1172
+ """ """
1173
+ ...
1174
+
1175
+ def remove(self, draw_func):
1176
+ """
1177
+
1178
+ :param draw_func:
1179
+ """
1180
+ ...
1181
+
1182
+ def type_recast(self):
1183
+ """ """
1184
+ ...
1185
+
1186
+ def values(self):
1187
+ """ """
1188
+ ...
1189
+
1190
+ class DATA_PT_iksolver_itasc(bpy_types._GenericUI):
1191
+ """ """
1192
+
1193
+ bl_context: typing.Any
1194
+ """ """
1195
+
1196
+ bl_label: typing.Any
1197
+ """ """
430
1198
 
431
- def append(self, draw_func): ...
432
- def as_pointer(self): ...
433
- def bl_rna_get_subclass(self): ...
434
- def bl_rna_get_subclass_py(self): ...
435
- def draw(self, context): ...
436
- def driver_add(self): ...
437
- def driver_remove(self): ...
438
- def get(self): ...
439
- def id_properties_clear(self): ...
440
- def id_properties_ensure(self): ...
441
- def id_properties_ui(self): ...
442
- def is_extended(self): ...
443
- def is_property_hidden(self): ...
444
- def is_property_overridable_library(self): ...
445
- def is_property_readonly(self): ...
446
- def is_property_set(self): ...
447
- def items(self): ...
448
- def keyframe_delete(self): ...
449
- def keyframe_insert(self): ...
450
- def keys(self): ...
451
- def path_from_id(self): ...
452
- def path_resolve(self): ...
453
- def poll(self, context): ...
454
- def pop(self): ...
455
- def prepend(self, draw_func): ...
456
- def property_overridable_library_set(self): ...
457
- def property_unset(self): ...
458
- def remove(self, draw_func): ...
459
- def type_recast(self): ...
460
- def values(self): ...
461
-
462
- class DATA_PT_iksolver_itasc(
463
- ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
464
- ):
465
- bl_context: typing.Any
466
- bl_label: typing.Any
467
1199
  bl_options: typing.Any
1200
+ """ """
1201
+
468
1202
  bl_region_type: typing.Any
1203
+ """ """
1204
+
469
1205
  bl_rna: typing.Any
1206
+ """ """
1207
+
470
1208
  bl_space_type: typing.Any
1209
+ """ """
1210
+
471
1211
  id_data: typing.Any
1212
+ """ """
1213
+
1214
+ def append(self, draw_func):
1215
+ """
1216
+
1217
+ :param draw_func:
1218
+ """
1219
+ ...
1220
+
1221
+ def as_pointer(self):
1222
+ """ """
1223
+ ...
1224
+
1225
+ def bl_rna_get_subclass(self):
1226
+ """ """
1227
+ ...
1228
+
1229
+ def bl_rna_get_subclass_py(self):
1230
+ """ """
1231
+ ...
1232
+
1233
+ def draw(self, context):
1234
+ """
1235
+
1236
+ :param context:
1237
+ """
1238
+ ...
1239
+
1240
+ def driver_add(self):
1241
+ """ """
1242
+ ...
1243
+
1244
+ def driver_remove(self):
1245
+ """ """
1246
+ ...
1247
+
1248
+ def get(self):
1249
+ """ """
1250
+ ...
1251
+
1252
+ def id_properties_clear(self):
1253
+ """ """
1254
+ ...
1255
+
1256
+ def id_properties_ensure(self):
1257
+ """ """
1258
+ ...
1259
+
1260
+ def id_properties_ui(self):
1261
+ """ """
1262
+ ...
1263
+
1264
+ def is_extended(self):
1265
+ """ """
1266
+ ...
1267
+
1268
+ def is_property_hidden(self):
1269
+ """ """
1270
+ ...
1271
+
1272
+ def is_property_overridable_library(self):
1273
+ """ """
1274
+ ...
1275
+
1276
+ def is_property_readonly(self):
1277
+ """ """
1278
+ ...
1279
+
1280
+ def is_property_set(self):
1281
+ """ """
1282
+ ...
1283
+
1284
+ def items(self):
1285
+ """ """
1286
+ ...
1287
+
1288
+ def keyframe_delete(self):
1289
+ """ """
1290
+ ...
1291
+
1292
+ def keyframe_insert(self):
1293
+ """ """
1294
+ ...
1295
+
1296
+ def keys(self):
1297
+ """ """
1298
+ ...
1299
+
1300
+ def path_from_id(self):
1301
+ """ """
1302
+ ...
1303
+
1304
+ def path_resolve(self):
1305
+ """ """
1306
+ ...
1307
+
1308
+ def poll(self, context):
1309
+ """
1310
+
1311
+ :param context:
1312
+ """
1313
+ ...
1314
+
1315
+ def pop(self):
1316
+ """ """
1317
+ ...
1318
+
1319
+ def prepend(self, draw_func):
1320
+ """
1321
+
1322
+ :param draw_func:
1323
+ """
1324
+ ...
1325
+
1326
+ def property_overridable_library_set(self):
1327
+ """ """
1328
+ ...
1329
+
1330
+ def property_unset(self):
1331
+ """ """
1332
+ ...
1333
+
1334
+ def remove(self, draw_func):
1335
+ """
1336
+
1337
+ :param draw_func:
1338
+ """
1339
+ ...
1340
+
1341
+ def type_recast(self):
1342
+ """ """
1343
+ ...
1344
+
1345
+ def values(self):
1346
+ """ """
1347
+ ...
1348
+
1349
+ class DATA_PT_motion_paths(bpy_types._GenericUI):
1350
+ """ """
472
1351
 
473
- def append(self, draw_func): ...
474
- def as_pointer(self): ...
475
- def bl_rna_get_subclass(self): ...
476
- def bl_rna_get_subclass_py(self): ...
477
- def draw(self, context): ...
478
- def driver_add(self): ...
479
- def driver_remove(self): ...
480
- def get(self): ...
481
- def id_properties_clear(self): ...
482
- def id_properties_ensure(self): ...
483
- def id_properties_ui(self): ...
484
- def is_extended(self): ...
485
- def is_property_hidden(self): ...
486
- def is_property_overridable_library(self): ...
487
- def is_property_readonly(self): ...
488
- def is_property_set(self): ...
489
- def items(self): ...
490
- def keyframe_delete(self): ...
491
- def keyframe_insert(self): ...
492
- def keys(self): ...
493
- def path_from_id(self): ...
494
- def path_resolve(self): ...
495
- def poll(self, context): ...
496
- def pop(self): ...
497
- def prepend(self, draw_func): ...
498
- def property_overridable_library_set(self): ...
499
- def property_unset(self): ...
500
- def remove(self, draw_func): ...
501
- def type_recast(self): ...
502
- def values(self): ...
503
-
504
- class DATA_PT_pose(ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
505
1352
  bl_context: typing.Any
1353
+ """ """
1354
+
506
1355
  bl_label: typing.Any
1356
+ """ """
1357
+
1358
+ bl_options: typing.Any
1359
+ """ """
1360
+
507
1361
  bl_region_type: typing.Any
1362
+ """ """
1363
+
508
1364
  bl_rna: typing.Any
1365
+ """ """
1366
+
509
1367
  bl_space_type: typing.Any
1368
+ """ """
1369
+
510
1370
  id_data: typing.Any
1371
+ """ """
1372
+
1373
+ def append(self, draw_func):
1374
+ """
1375
+
1376
+ :param draw_func:
1377
+ """
1378
+ ...
1379
+
1380
+ def as_pointer(self):
1381
+ """ """
1382
+ ...
1383
+
1384
+ def bl_rna_get_subclass(self):
1385
+ """ """
1386
+ ...
1387
+
1388
+ def bl_rna_get_subclass_py(self):
1389
+ """ """
1390
+ ...
1391
+
1392
+ def draw(self, context):
1393
+ """
1394
+
1395
+ :param context:
1396
+ """
1397
+ ...
1398
+
1399
+ def draw_settings(self, _context, avs, mpath, bones):
1400
+ """
1401
+
1402
+ :param _context:
1403
+ :param avs:
1404
+ :param mpath:
1405
+ :param bones:
1406
+ """
1407
+ ...
1408
+
1409
+ def driver_add(self):
1410
+ """ """
1411
+ ...
1412
+
1413
+ def driver_remove(self):
1414
+ """ """
1415
+ ...
1416
+
1417
+ def get(self):
1418
+ """ """
1419
+ ...
1420
+
1421
+ def id_properties_clear(self):
1422
+ """ """
1423
+ ...
1424
+
1425
+ def id_properties_ensure(self):
1426
+ """ """
1427
+ ...
1428
+
1429
+ def id_properties_ui(self):
1430
+ """ """
1431
+ ...
1432
+
1433
+ def is_extended(self):
1434
+ """ """
1435
+ ...
1436
+
1437
+ def is_property_hidden(self):
1438
+ """ """
1439
+ ...
1440
+
1441
+ def is_property_overridable_library(self):
1442
+ """ """
1443
+ ...
1444
+
1445
+ def is_property_readonly(self):
1446
+ """ """
1447
+ ...
1448
+
1449
+ def is_property_set(self):
1450
+ """ """
1451
+ ...
1452
+
1453
+ def items(self):
1454
+ """ """
1455
+ ...
1456
+
1457
+ def keyframe_delete(self):
1458
+ """ """
1459
+ ...
1460
+
1461
+ def keyframe_insert(self):
1462
+ """ """
1463
+ ...
1464
+
1465
+ def keys(self):
1466
+ """ """
1467
+ ...
1468
+
1469
+ def path_from_id(self):
1470
+ """ """
1471
+ ...
1472
+
1473
+ def path_resolve(self):
1474
+ """ """
1475
+ ...
1476
+
1477
+ def poll(self, context):
1478
+ """
1479
+
1480
+ :param context:
1481
+ """
1482
+ ...
1483
+
1484
+ def pop(self):
1485
+ """ """
1486
+ ...
1487
+
1488
+ def prepend(self, draw_func):
1489
+ """
1490
+
1491
+ :param draw_func:
1492
+ """
1493
+ ...
1494
+
1495
+ def property_overridable_library_set(self):
1496
+ """ """
1497
+ ...
1498
+
1499
+ def property_unset(self):
1500
+ """ """
1501
+ ...
1502
+
1503
+ def remove(self, draw_func):
1504
+ """
1505
+
1506
+ :param draw_func:
1507
+ """
1508
+ ...
1509
+
1510
+ def type_recast(self):
1511
+ """ """
1512
+ ...
1513
+
1514
+ def values(self):
1515
+ """ """
1516
+ ...
1517
+
1518
+ class DATA_PT_motion_paths_display(bpy_types._GenericUI):
1519
+ """ """
1520
+
1521
+ bl_context: typing.Any
1522
+ """ """
1523
+
1524
+ bl_label: typing.Any
1525
+ """ """
1526
+
1527
+ bl_options: typing.Any
1528
+ """ """
1529
+
1530
+ bl_parent_id: typing.Any
1531
+ """ """
1532
+
1533
+ bl_region_type: typing.Any
1534
+ """ """
1535
+
1536
+ bl_rna: typing.Any
1537
+ """ """
1538
+
1539
+ bl_space_type: typing.Any
1540
+ """ """
1541
+
1542
+ id_data: typing.Any
1543
+ """ """
1544
+
1545
+ def append(self, draw_func):
1546
+ """
1547
+
1548
+ :param draw_func:
1549
+ """
1550
+ ...
1551
+
1552
+ def as_pointer(self):
1553
+ """ """
1554
+ ...
1555
+
1556
+ def bl_rna_get_subclass(self):
1557
+ """ """
1558
+ ...
1559
+
1560
+ def bl_rna_get_subclass_py(self):
1561
+ """ """
1562
+ ...
1563
+
1564
+ def draw(self, context):
1565
+ """
1566
+
1567
+ :param context:
1568
+ """
1569
+ ...
1570
+
1571
+ def draw_settings(self, _context, avs, mpath, bones):
1572
+ """
1573
+
1574
+ :param _context:
1575
+ :param avs:
1576
+ :param mpath:
1577
+ :param bones:
1578
+ """
1579
+ ...
1580
+
1581
+ def driver_add(self):
1582
+ """ """
1583
+ ...
1584
+
1585
+ def driver_remove(self):
1586
+ """ """
1587
+ ...
1588
+
1589
+ def get(self):
1590
+ """ """
1591
+ ...
1592
+
1593
+ def id_properties_clear(self):
1594
+ """ """
1595
+ ...
1596
+
1597
+ def id_properties_ensure(self):
1598
+ """ """
1599
+ ...
1600
+
1601
+ def id_properties_ui(self):
1602
+ """ """
1603
+ ...
1604
+
1605
+ def is_extended(self):
1606
+ """ """
1607
+ ...
1608
+
1609
+ def is_property_hidden(self):
1610
+ """ """
1611
+ ...
1612
+
1613
+ def is_property_overridable_library(self):
1614
+ """ """
1615
+ ...
1616
+
1617
+ def is_property_readonly(self):
1618
+ """ """
1619
+ ...
1620
+
1621
+ def is_property_set(self):
1622
+ """ """
1623
+ ...
1624
+
1625
+ def items(self):
1626
+ """ """
1627
+ ...
1628
+
1629
+ def keyframe_delete(self):
1630
+ """ """
1631
+ ...
1632
+
1633
+ def keyframe_insert(self):
1634
+ """ """
1635
+ ...
1636
+
1637
+ def keys(self):
1638
+ """ """
1639
+ ...
1640
+
1641
+ def path_from_id(self):
1642
+ """ """
1643
+ ...
1644
+
1645
+ def path_resolve(self):
1646
+ """ """
1647
+ ...
1648
+
1649
+ def poll(self, context):
1650
+ """
1651
+
1652
+ :param context:
1653
+ """
1654
+ ...
1655
+
1656
+ def pop(self):
1657
+ """ """
1658
+ ...
1659
+
1660
+ def prepend(self, draw_func):
1661
+ """
1662
+
1663
+ :param draw_func:
1664
+ """
1665
+ ...
1666
+
1667
+ def property_overridable_library_set(self):
1668
+ """ """
1669
+ ...
1670
+
1671
+ def property_unset(self):
1672
+ """ """
1673
+ ...
1674
+
1675
+ def remove(self, draw_func):
1676
+ """
1677
+
1678
+ :param draw_func:
1679
+ """
1680
+ ...
1681
+
1682
+ def type_recast(self):
1683
+ """ """
1684
+ ...
1685
+
1686
+ def values(self):
1687
+ """ """
1688
+ ...
1689
+
1690
+ class DATA_PT_pose(bpy_types._GenericUI):
1691
+ """ """
1692
+
1693
+ bl_context: typing.Any
1694
+ """ """
1695
+
1696
+ bl_label: typing.Any
1697
+ """ """
1698
+
1699
+ bl_region_type: typing.Any
1700
+ """ """
1701
+
1702
+ bl_rna: typing.Any
1703
+ """ """
1704
+
1705
+ bl_space_type: typing.Any
1706
+ """ """
1707
+
1708
+ id_data: typing.Any
1709
+ """ """
1710
+
1711
+ def append(self, draw_func):
1712
+ """
1713
+
1714
+ :param draw_func:
1715
+ """
1716
+ ...
1717
+
1718
+ def as_pointer(self):
1719
+ """ """
1720
+ ...
1721
+
1722
+ def bl_rna_get_subclass(self):
1723
+ """ """
1724
+ ...
1725
+
1726
+ def bl_rna_get_subclass_py(self):
1727
+ """ """
1728
+ ...
1729
+
1730
+ def draw(self, context):
1731
+ """
1732
+
1733
+ :param context:
1734
+ """
1735
+ ...
1736
+
1737
+ def driver_add(self):
1738
+ """ """
1739
+ ...
1740
+
1741
+ def driver_remove(self):
1742
+ """ """
1743
+ ...
1744
+
1745
+ def get(self):
1746
+ """ """
1747
+ ...
1748
+
1749
+ def id_properties_clear(self):
1750
+ """ """
1751
+ ...
1752
+
1753
+ def id_properties_ensure(self):
1754
+ """ """
1755
+ ...
1756
+
1757
+ def id_properties_ui(self):
1758
+ """ """
1759
+ ...
1760
+
1761
+ def is_extended(self):
1762
+ """ """
1763
+ ...
1764
+
1765
+ def is_property_hidden(self):
1766
+ """ """
1767
+ ...
1768
+
1769
+ def is_property_overridable_library(self):
1770
+ """ """
1771
+ ...
1772
+
1773
+ def is_property_readonly(self):
1774
+ """ """
1775
+ ...
1776
+
1777
+ def is_property_set(self):
1778
+ """ """
1779
+ ...
1780
+
1781
+ def items(self):
1782
+ """ """
1783
+ ...
1784
+
1785
+ def keyframe_delete(self):
1786
+ """ """
1787
+ ...
1788
+
1789
+ def keyframe_insert(self):
1790
+ """ """
1791
+ ...
1792
+
1793
+ def keys(self):
1794
+ """ """
1795
+ ...
1796
+
1797
+ def path_from_id(self):
1798
+ """ """
1799
+ ...
1800
+
1801
+ def path_resolve(self):
1802
+ """ """
1803
+ ...
1804
+
1805
+ def poll(self, context):
1806
+ """
1807
+
1808
+ :param context:
1809
+ """
1810
+ ...
1811
+
1812
+ def pop(self):
1813
+ """ """
1814
+ ...
1815
+
1816
+ def prepend(self, draw_func):
1817
+ """
1818
+
1819
+ :param draw_func:
1820
+ """
1821
+ ...
1822
+
1823
+ def property_overridable_library_set(self):
1824
+ """ """
1825
+ ...
1826
+
1827
+ def property_unset(self):
1828
+ """ """
1829
+ ...
1830
+
1831
+ def remove(self, draw_func):
1832
+ """
1833
+
1834
+ :param draw_func:
1835
+ """
1836
+ ...
1837
+
1838
+ def type_recast(self):
1839
+ """ """
1840
+ ...
1841
+
1842
+ def values(self):
1843
+ """ """
1844
+ ...
1845
+
1846
+ class DATA_UL_bone_collections(bpy_types._GenericUI):
1847
+ """ """
1848
+
1849
+ bl_rna: typing.Any
1850
+ """ """
1851
+
1852
+ id_data: typing.Any
1853
+ """ """
1854
+
1855
+ def append(self, draw_func):
1856
+ """
1857
+
1858
+ :param draw_func:
1859
+ """
1860
+ ...
1861
+
1862
+ def as_pointer(self):
1863
+ """ """
1864
+ ...
1865
+
1866
+ def bl_rna_get_subclass(self):
1867
+ """ """
1868
+ ...
1869
+
1870
+ def bl_rna_get_subclass_py(self):
1871
+ """ """
1872
+ ...
1873
+
1874
+ def draw_item(
1875
+ self,
1876
+ _context,
1877
+ layout,
1878
+ armature,
1879
+ bcoll,
1880
+ _icon,
1881
+ _active_data,
1882
+ _active_propname,
1883
+ _index,
1884
+ ):
1885
+ """
1886
+
1887
+ :param _context:
1888
+ :param layout:
1889
+ :param armature:
1890
+ :param bcoll:
1891
+ :param _icon:
1892
+ :param _active_data:
1893
+ :param _active_propname:
1894
+ :param _index:
1895
+ """
1896
+ ...
1897
+
1898
+ def driver_add(self):
1899
+ """ """
1900
+ ...
1901
+
1902
+ def driver_remove(self):
1903
+ """ """
1904
+ ...
1905
+
1906
+ def get(self):
1907
+ """ """
1908
+ ...
1909
+
1910
+ def id_properties_clear(self):
1911
+ """ """
1912
+ ...
1913
+
1914
+ def id_properties_ensure(self):
1915
+ """ """
1916
+ ...
1917
+
1918
+ def id_properties_ui(self):
1919
+ """ """
1920
+ ...
1921
+
1922
+ def is_extended(self):
1923
+ """ """
1924
+ ...
1925
+
1926
+ def is_property_hidden(self):
1927
+ """ """
1928
+ ...
1929
+
1930
+ def is_property_overridable_library(self):
1931
+ """ """
1932
+ ...
1933
+
1934
+ def is_property_readonly(self):
1935
+ """ """
1936
+ ...
1937
+
1938
+ def is_property_set(self):
1939
+ """ """
1940
+ ...
1941
+
1942
+ def items(self):
1943
+ """ """
1944
+ ...
1945
+
1946
+ def keyframe_delete(self):
1947
+ """ """
1948
+ ...
1949
+
1950
+ def keyframe_insert(self):
1951
+ """ """
1952
+ ...
1953
+
1954
+ def keys(self):
1955
+ """ """
1956
+ ...
1957
+
1958
+ def path_from_id(self):
1959
+ """ """
1960
+ ...
1961
+
1962
+ def path_resolve(self):
1963
+ """ """
1964
+ ...
1965
+
1966
+ def pop(self):
1967
+ """ """
1968
+ ...
1969
+
1970
+ def prepend(self, draw_func):
1971
+ """
1972
+
1973
+ :param draw_func:
1974
+ """
1975
+ ...
1976
+
1977
+ def property_overridable_library_set(self):
1978
+ """ """
1979
+ ...
1980
+
1981
+ def property_unset(self):
1982
+ """ """
1983
+ ...
1984
+
1985
+ def remove(self, draw_func):
1986
+ """
1987
+
1988
+ :param draw_func:
1989
+ """
1990
+ ...
1991
+
1992
+ def type_recast(self):
1993
+ """ """
1994
+ ...
511
1995
 
512
- def append(self, draw_func): ...
513
- def as_pointer(self): ...
514
- def bl_rna_get_subclass(self): ...
515
- def bl_rna_get_subclass_py(self): ...
516
- def draw(self, context): ...
517
- def driver_add(self): ...
518
- def driver_remove(self): ...
519
- def get(self): ...
520
- def id_properties_clear(self): ...
521
- def id_properties_ensure(self): ...
522
- def id_properties_ui(self): ...
523
- def is_extended(self): ...
524
- def is_property_hidden(self): ...
525
- def is_property_overridable_library(self): ...
526
- def is_property_readonly(self): ...
527
- def is_property_set(self): ...
528
- def items(self): ...
529
- def keyframe_delete(self): ...
530
- def keyframe_insert(self): ...
531
- def keys(self): ...
532
- def path_from_id(self): ...
533
- def path_resolve(self): ...
534
- def poll(self, context): ...
535
- def pop(self): ...
536
- def prepend(self, draw_func): ...
537
- def property_overridable_library_set(self): ...
538
- def property_unset(self): ...
539
- def remove(self, draw_func): ...
540
- def type_recast(self): ...
541
- def values(self): ...
1996
+ def values(self):
1997
+ """ """
1998
+ ...