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

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

Potentially problematic release.


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

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +330 -428
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86353 -87337
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -1,33 +1,43 @@
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
+ """ """
12
17
 
13
18
  def append(self, draw_func):
14
19
  """
15
20
 
16
21
  :param draw_func:
17
- :type draw_func:
18
22
  """
19
23
  ...
20
24
 
21
- def as_pointer(self): ...
22
- def bl_rna_get_subclass(self): ...
23
- def bl_rna_get_subclass_py(self): ...
25
+ def as_pointer(self):
26
+ """ """
27
+ ...
28
+
29
+ def bl_rna_get_subclass(self):
30
+ """ """
31
+ ...
32
+
33
+ def bl_rna_get_subclass_py(self):
34
+ """ """
35
+ ...
36
+
24
37
  def draw(self, context):
25
38
  """
26
39
 
27
- :param self:
28
- :type self:
29
40
  :param context:
30
- :type context:
31
41
  """
32
42
  ...
33
43
 
@@ -35,38 +45,81 @@ class ARMATURE_MT_collection_context_menu(bpy_types.Menu, bpy_types._GenericUI):
35
45
  """
36
46
 
37
47
  :param context:
38
- :type context:
39
48
  :param layout:
40
- :type layout:
41
49
  """
42
50
  ...
43
51
 
44
52
  def draw_preset(self, _context):
45
53
  """
46
54
 
47
- :param self:
48
- :type self:
49
55
  :param _context:
50
- :type _context:
51
- """
52
- ...
53
-
54
- def driver_add(self): ...
55
- def driver_remove(self): ...
56
- def get(self): ...
57
- def id_properties_clear(self): ...
58
- def id_properties_ensure(self): ...
59
- def id_properties_ui(self): ...
60
- def is_extended(self): ...
61
- def is_property_hidden(self): ...
62
- def is_property_overridable_library(self): ...
63
- def is_property_readonly(self): ...
64
- def is_property_set(self): ...
65
- def items(self): ...
66
- def keyframe_delete(self): ...
67
- def keyframe_insert(self): ...
68
- def keys(self): ...
69
- def path_from_id(self): ...
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
+
70
123
  def path_menu(
71
124
  self,
72
125
  searchpaths,
@@ -80,73 +133,90 @@ class ARMATURE_MT_collection_context_menu(bpy_types.Menu, bpy_types._GenericUI):
80
133
  ):
81
134
  """
82
135
 
83
- :param self:
84
- :type self:
85
136
  :param searchpaths:
86
- :type searchpaths:
87
137
  :param operator:
88
- :type operator:
89
138
  :param props_default:
90
- :type props_default:
91
139
  :param prop_filepath:
92
- :type prop_filepath:
93
140
  :param filter_ext:
94
- :type filter_ext:
95
141
  :param filter_path:
96
- :type filter_path:
97
142
  :param display_name:
98
- :type display_name:
99
143
  :param add_operator:
100
- :type add_operator:
101
144
  """
102
145
  ...
103
146
 
104
- def path_resolve(self): ...
105
- def pop(self): ...
147
+ def path_resolve(self):
148
+ """ """
149
+ ...
150
+
151
+ def pop(self):
152
+ """ """
153
+ ...
154
+
106
155
  def prepend(self, draw_func):
107
156
  """
108
157
 
109
158
  :param draw_func:
110
- :type draw_func:
111
159
  """
112
160
  ...
113
161
 
114
- def property_overridable_library_set(self): ...
115
- def property_unset(self): ...
162
+ def property_overridable_library_set(self):
163
+ """ """
164
+ ...
165
+
166
+ def property_unset(self):
167
+ """ """
168
+ ...
169
+
116
170
  def remove(self, draw_func):
117
171
  """
118
172
 
119
173
  :param draw_func:
120
- :type draw_func:
121
174
  """
122
175
  ...
123
176
 
124
- def type_recast(self): ...
125
- def values(self): ...
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
+ """ """
126
187
 
127
- class ARMATURE_MT_collection_tree_context_menu(bpy_types.Menu, bpy_types._GenericUI):
128
188
  bl_label: typing.Any
189
+ """ """
190
+
129
191
  bl_rna: typing.Any
192
+ """ """
193
+
130
194
  id_data: typing.Any
195
+ """ """
131
196
 
132
197
  def append(self, draw_func):
133
198
  """
134
199
 
135
200
  :param draw_func:
136
- :type draw_func:
137
201
  """
138
202
  ...
139
203
 
140
- def as_pointer(self): ...
141
- def bl_rna_get_subclass(self): ...
142
- def bl_rna_get_subclass_py(self): ...
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
+
143
216
  def draw(self, context):
144
217
  """
145
218
 
146
- :param self:
147
- :type self:
148
219
  :param context:
149
- :type context:
150
220
  """
151
221
  ...
152
222
 
@@ -154,38 +224,81 @@ class ARMATURE_MT_collection_tree_context_menu(bpy_types.Menu, bpy_types._Generi
154
224
  """
155
225
 
156
226
  :param context:
157
- :type context:
158
227
  :param layout:
159
- :type layout:
160
228
  """
161
229
  ...
162
230
 
163
231
  def draw_preset(self, _context):
164
232
  """
165
233
 
166
- :param self:
167
- :type self:
168
234
  :param _context:
169
- :type _context:
170
- """
171
- ...
172
-
173
- def driver_add(self): ...
174
- def driver_remove(self): ...
175
- def get(self): ...
176
- def id_properties_clear(self): ...
177
- def id_properties_ensure(self): ...
178
- def id_properties_ui(self): ...
179
- def is_extended(self): ...
180
- def is_property_hidden(self): ...
181
- def is_property_overridable_library(self): ...
182
- def is_property_readonly(self): ...
183
- def is_property_set(self): ...
184
- def items(self): ...
185
- def keyframe_delete(self): ...
186
- def keyframe_insert(self): ...
187
- def keys(self): ...
188
- def path_from_id(self): ...
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
+ ...
301
+
189
302
  def path_menu(
190
303
  self,
191
304
  searchpaths,
@@ -199,898 +312,1687 @@ class ARMATURE_MT_collection_tree_context_menu(bpy_types.Menu, bpy_types._Generi
199
312
  ):
200
313
  """
201
314
 
202
- :param self:
203
- :type self:
204
315
  :param searchpaths:
205
- :type searchpaths:
206
316
  :param operator:
207
- :type operator:
208
317
  :param props_default:
209
- :type props_default:
210
318
  :param prop_filepath:
211
- :type prop_filepath:
212
319
  :param filter_ext:
213
- :type filter_ext:
214
320
  :param filter_path:
215
- :type filter_path:
216
321
  :param display_name:
217
- :type display_name:
218
322
  :param add_operator:
219
- :type add_operator:
220
323
  """
221
324
  ...
222
325
 
223
- def path_resolve(self): ...
224
- def pop(self): ...
326
+ def path_resolve(self):
327
+ """ """
328
+ ...
329
+
330
+ def pop(self):
331
+ """ """
332
+ ...
333
+
225
334
  def prepend(self, draw_func):
226
335
  """
227
336
 
228
337
  :param draw_func:
229
- :type draw_func:
230
338
  """
231
339
  ...
232
340
 
233
- def property_overridable_library_set(self): ...
234
- def property_unset(self): ...
341
+ def property_overridable_library_set(self):
342
+ """ """
343
+ ...
344
+
345
+ def property_unset(self):
346
+ """ """
347
+ ...
348
+
235
349
  def remove(self, draw_func):
236
350
  """
237
351
 
238
352
  :param draw_func:
239
- :type draw_func:
240
353
  """
241
354
  ...
242
355
 
243
- def type_recast(self): ...
244
- def values(self): ...
356
+ def type_recast(self):
357
+ """ """
358
+ ...
359
+
360
+ def values(self):
361
+ """ """
362
+ ...
245
363
 
246
364
  class ArmatureButtonsPanel:
365
+ """ """
366
+
247
367
  bl_context: typing.Any
368
+ """ """
369
+
248
370
  bl_region_type: typing.Any
371
+ """ """
372
+
249
373
  bl_space_type: typing.Any
374
+ """ """
250
375
 
251
376
  def poll(self, context):
252
377
  """
253
378
 
254
379
  :param context:
255
- :type context:
256
380
  """
257
381
  ...
258
382
 
259
- class DATA_PT_motion_paths(
260
- bpy_types.Panel,
261
- bl_ui.properties_animviz.MotionPathButtonsPanel,
262
- bpy_types._GenericUI,
263
- ):
383
+ class DATA_PT_bone_collections(bpy_types._GenericUI):
384
+ """ """
385
+
264
386
  bl_context: typing.Any
387
+ """ """
388
+
265
389
  bl_label: typing.Any
266
- bl_options: typing.Any
390
+ """ """
391
+
267
392
  bl_region_type: typing.Any
393
+ """ """
394
+
268
395
  bl_rna: typing.Any
396
+ """ """
397
+
269
398
  bl_space_type: typing.Any
399
+ """ """
400
+
270
401
  id_data: typing.Any
402
+ """ """
271
403
 
272
404
  def append(self, draw_func):
273
405
  """
274
406
 
275
407
  :param draw_func:
276
- :type draw_func:
277
408
  """
278
409
  ...
279
410
 
280
- def as_pointer(self): ...
281
- def bl_rna_get_subclass(self): ...
282
- def bl_rna_get_subclass_py(self): ...
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
+
283
423
  def draw(self, context):
284
424
  """
285
425
 
286
- :param self:
287
- :type self:
288
426
  :param context:
289
- :type context:
290
427
  """
291
428
  ...
292
429
 
293
- def draw_settings(self, _context, avs, mpath, bones):
294
- """
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
+ ...
295
497
 
296
- :param self:
297
- :type self:
298
- :param _context:
299
- :type _context:
300
- :param avs:
301
- :type avs:
302
- :param mpath:
303
- :type mpath:
304
- :param bones:
305
- :type bones:
306
- """
307
- ...
308
-
309
- def driver_add(self): ...
310
- def driver_remove(self): ...
311
- def get(self): ...
312
- def id_properties_clear(self): ...
313
- def id_properties_ensure(self): ...
314
- def id_properties_ui(self): ...
315
- def is_extended(self): ...
316
- def is_property_hidden(self): ...
317
- def is_property_overridable_library(self): ...
318
- def is_property_readonly(self): ...
319
- def is_property_set(self): ...
320
- def items(self): ...
321
- def keyframe_delete(self): ...
322
- def keyframe_insert(self): ...
323
- def keys(self): ...
324
- def path_from_id(self): ...
325
- def path_resolve(self): ...
326
498
  def poll(self, context):
327
499
  """
328
500
 
329
501
  :param context:
330
- :type context:
331
502
  """
332
503
  ...
333
504
 
334
- def pop(self): ...
505
+ def pop(self):
506
+ """ """
507
+ ...
508
+
335
509
  def prepend(self, draw_func):
336
510
  """
337
511
 
338
512
  :param draw_func:
339
- :type draw_func:
340
513
  """
341
514
  ...
342
515
 
343
- def property_overridable_library_set(self): ...
344
- def property_unset(self): ...
516
+ def property_overridable_library_set(self):
517
+ """ """
518
+ ...
519
+
520
+ def property_unset(self):
521
+ """ """
522
+ ...
523
+
345
524
  def remove(self, draw_func):
346
525
  """
347
526
 
348
527
  :param draw_func:
349
- :type draw_func:
350
528
  """
351
529
  ...
352
530
 
353
- def type_recast(self): ...
354
- def values(self): ...
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
+ """ """
355
541
 
356
- class DATA_PT_motion_paths_display(
357
- bpy_types.Panel,
358
- bl_ui.properties_animviz.MotionPathButtonsPanel_display,
359
- bpy_types._GenericUI,
360
- ):
361
542
  bl_context: typing.Any
543
+ """ """
544
+
362
545
  bl_label: typing.Any
546
+ """ """
547
+
363
548
  bl_options: typing.Any
364
- bl_parent_id: typing.Any
549
+ """ """
550
+
365
551
  bl_region_type: typing.Any
552
+ """ """
553
+
366
554
  bl_rna: typing.Any
555
+ """ """
556
+
367
557
  bl_space_type: typing.Any
558
+ """ """
559
+
368
560
  id_data: typing.Any
561
+ """ """
369
562
 
370
563
  def append(self, draw_func):
371
564
  """
372
565
 
373
566
  :param draw_func:
374
- :type draw_func:
375
567
  """
376
568
  ...
377
569
 
378
- def as_pointer(self): ...
379
- def bl_rna_get_subclass(self): ...
380
- def bl_rna_get_subclass_py(self): ...
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
+
381
582
  def draw(self, context):
382
583
  """
383
584
 
384
- :param self:
385
- :type self:
386
585
  :param context:
387
- :type context:
388
586
  """
389
587
  ...
390
588
 
391
- def draw_settings(self, _context, avs, mpath, bones):
392
- """
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
+ ...
393
656
 
394
- :param self:
395
- :type self:
396
- :param _context:
397
- :type _context:
398
- :param avs:
399
- :type avs:
400
- :param mpath:
401
- :type mpath:
402
- :param bones:
403
- :type bones:
404
- """
405
- ...
406
-
407
- def driver_add(self): ...
408
- def driver_remove(self): ...
409
- def get(self): ...
410
- def id_properties_clear(self): ...
411
- def id_properties_ensure(self): ...
412
- def id_properties_ui(self): ...
413
- def is_extended(self): ...
414
- def is_property_hidden(self): ...
415
- def is_property_overridable_library(self): ...
416
- def is_property_readonly(self): ...
417
- def is_property_set(self): ...
418
- def items(self): ...
419
- def keyframe_delete(self): ...
420
- def keyframe_insert(self): ...
421
- def keys(self): ...
422
- def path_from_id(self): ...
423
- def path_resolve(self): ...
424
657
  def poll(self, context):
425
658
  """
426
659
 
427
660
  :param context:
428
- :type context:
429
661
  """
430
662
  ...
431
663
 
432
- def pop(self): ...
664
+ def pop(self):
665
+ """ """
666
+ ...
667
+
433
668
  def prepend(self, draw_func):
434
669
  """
435
670
 
436
671
  :param draw_func:
437
- :type draw_func:
438
672
  """
439
673
  ...
440
674
 
441
- def property_overridable_library_set(self): ...
442
- def property_unset(self): ...
675
+ def property_overridable_library_set(self):
676
+ """ """
677
+ ...
678
+
679
+ def property_unset(self):
680
+ """ """
681
+ ...
682
+
443
683
  def remove(self, draw_func):
444
684
  """
445
685
 
446
686
  :param draw_func:
447
- :type draw_func:
448
687
  """
449
688
  ...
450
689
 
451
- def type_recast(self): ...
452
- def values(self): ...
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
+ """ """
700
+
701
+ COMPAT_ENGINES: typing.Any
702
+ """ """
703
+
704
+ bl_context: typing.Any
705
+ """ """
706
+
707
+ bl_label: typing.Any
708
+ """ """
709
+
710
+ bl_options: typing.Any
711
+ """ """
712
+
713
+ bl_order: typing.Any
714
+ """ """
715
+
716
+ bl_region_type: typing.Any
717
+ """ """
453
718
 
454
- class DATA_UL_bone_collections(bpy_types.UIList, bpy_types._GenericUI):
455
719
  bl_rna: typing.Any
720
+ """ """
721
+
722
+ bl_space_type: typing.Any
723
+ """ """
724
+
456
725
  id_data: typing.Any
726
+ """ """
457
727
 
458
728
  def append(self, draw_func):
459
729
  """
460
730
 
461
731
  :param draw_func:
462
- :type draw_func:
463
732
  """
464
733
  ...
465
734
 
466
- def as_pointer(self): ...
467
- def bl_rna_get_subclass(self): ...
468
- def bl_rna_get_subclass_py(self): ...
469
- def draw_item(
470
- self,
471
- _context,
472
- layout,
473
- armature,
474
- bcoll,
475
- _icon,
476
- _active_data,
477
- _active_propname,
478
- _index,
479
- ):
480
- """
735
+ def as_pointer(self):
736
+ """ """
737
+ ...
481
738
 
482
- :param self:
483
- :type self:
484
- :param _context:
485
- :type _context:
486
- :param layout:
487
- :type layout:
488
- :param armature:
489
- :type armature:
490
- :param bcoll:
491
- :type bcoll:
492
- :param _icon:
493
- :type _icon:
494
- :param _active_data:
495
- :type _active_data:
496
- :param _active_propname:
497
- :type _active_propname:
498
- :param _index:
499
- :type _index:
500
- """
501
- ...
502
-
503
- def driver_add(self): ...
504
- def driver_remove(self): ...
505
- def get(self): ...
506
- def id_properties_clear(self): ...
507
- def id_properties_ensure(self): ...
508
- def id_properties_ui(self): ...
509
- def is_extended(self): ...
510
- def is_property_hidden(self): ...
511
- def is_property_overridable_library(self): ...
512
- def is_property_readonly(self): ...
513
- def is_property_set(self): ...
514
- def items(self): ...
515
- def keyframe_delete(self): ...
516
- def keyframe_insert(self): ...
517
- def keys(self): ...
518
- def path_from_id(self): ...
519
- def path_resolve(self): ...
520
- def pop(self): ...
521
- def prepend(self, draw_func):
522
- """
739
+ def bl_rna_get_subclass(self):
740
+ """ """
741
+ ...
523
742
 
524
- :param draw_func:
525
- :type draw_func:
526
- """
743
+ def bl_rna_get_subclass_py(self):
744
+ """ """
527
745
  ...
528
746
 
529
- def property_overridable_library_set(self): ...
530
- def property_unset(self): ...
531
- def remove(self, draw_func):
747
+ def draw(self, context):
532
748
  """
533
749
 
534
- :param draw_func:
535
- :type draw_func:
750
+ :param context:
536
751
  """
537
752
  ...
538
753
 
539
- def type_recast(self): ...
540
- def values(self): ...
754
+ def driver_add(self):
755
+ """ """
756
+ ...
541
757
 
542
- class DATA_PT_bone_collections(
543
- ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
544
- ):
545
- bl_context: typing.Any
546
- bl_label: typing.Any
547
- bl_region_type: typing.Any
548
- bl_rna: typing.Any
549
- bl_space_type: typing.Any
550
- id_data: typing.Any
758
+ def driver_remove(self):
759
+ """ """
760
+ ...
551
761
 
552
- def append(self, draw_func):
553
- """
762
+ def get(self):
763
+ """ """
764
+ ...
554
765
 
555
- :param draw_func:
556
- :type draw_func:
557
- """
766
+ def id_properties_clear(self):
767
+ """ """
558
768
  ...
559
769
 
560
- def as_pointer(self): ...
561
- def bl_rna_get_subclass(self): ...
562
- def bl_rna_get_subclass_py(self): ...
563
- def draw(self, context):
564
- """
770
+ def id_properties_ensure(self):
771
+ """ """
772
+ ...
565
773
 
566
- :param self:
567
- :type self:
568
- :param context:
569
- :type context:
570
- """
571
- ...
572
-
573
- def driver_add(self): ...
574
- def driver_remove(self): ...
575
- def get(self): ...
576
- def id_properties_clear(self): ...
577
- def id_properties_ensure(self): ...
578
- def id_properties_ui(self): ...
579
- def is_extended(self): ...
580
- def is_property_hidden(self): ...
581
- def is_property_overridable_library(self): ...
582
- def is_property_readonly(self): ...
583
- def is_property_set(self): ...
584
- def items(self): ...
585
- def keyframe_delete(self): ...
586
- def keyframe_insert(self): ...
587
- def keys(self): ...
588
- def path_from_id(self): ...
589
- def path_resolve(self): ...
590
- def poll(self, context):
591
- """
774
+ def id_properties_ui(self):
775
+ """ """
776
+ ...
592
777
 
593
- :param context:
594
- :type context:
595
- """
778
+ def is_extended(self):
779
+ """ """
596
780
  ...
597
781
 
598
- def pop(self): ...
599
- def prepend(self, draw_func):
600
- """
782
+ def is_property_hidden(self):
783
+ """ """
784
+ ...
601
785
 
602
- :param draw_func:
603
- :type draw_func:
604
- """
786
+ def is_property_overridable_library(self):
787
+ """ """
605
788
  ...
606
789
 
607
- def property_overridable_library_set(self): ...
608
- def property_unset(self): ...
609
- def remove(self, draw_func):
610
- """
790
+ def is_property_readonly(self):
791
+ """ """
792
+ ...
611
793
 
612
- :param draw_func:
613
- :type draw_func:
614
- """
794
+ def is_property_set(self):
795
+ """ """
615
796
  ...
616
797
 
617
- def type_recast(self): ...
618
- def values(self): ...
798
+ def items(self):
799
+ """ """
800
+ ...
619
801
 
620
- class DATA_PT_context_arm(ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
621
- bl_context: typing.Any
622
- bl_label: typing.Any
623
- bl_options: typing.Any
624
- bl_region_type: typing.Any
625
- bl_rna: typing.Any
626
- bl_space_type: typing.Any
627
- id_data: typing.Any
802
+ def keyframe_delete(self):
803
+ """ """
804
+ ...
628
805
 
629
- def append(self, draw_func):
630
- """
806
+ def keyframe_insert(self):
807
+ """ """
808
+ ...
631
809
 
632
- :param draw_func:
633
- :type draw_func:
634
- """
810
+ def keys(self):
811
+ """ """
635
812
  ...
636
813
 
637
- def as_pointer(self): ...
638
- def bl_rna_get_subclass(self): ...
639
- def bl_rna_get_subclass_py(self): ...
640
- def draw(self, context):
641
- """
814
+ def path_from_id(self):
815
+ """ """
816
+ ...
817
+
818
+ def path_resolve(self):
819
+ """ """
820
+ ...
642
821
 
643
- :param self:
644
- :type self:
645
- :param context:
646
- :type context:
647
- """
648
- ...
649
-
650
- def driver_add(self): ...
651
- def driver_remove(self): ...
652
- def get(self): ...
653
- def id_properties_clear(self): ...
654
- def id_properties_ensure(self): ...
655
- def id_properties_ui(self): ...
656
- def is_extended(self): ...
657
- def is_property_hidden(self): ...
658
- def is_property_overridable_library(self): ...
659
- def is_property_readonly(self): ...
660
- def is_property_set(self): ...
661
- def items(self): ...
662
- def keyframe_delete(self): ...
663
- def keyframe_insert(self): ...
664
- def keys(self): ...
665
- def path_from_id(self): ...
666
- def path_resolve(self): ...
667
822
  def poll(self, context):
668
823
  """
669
824
 
670
825
  :param context:
671
- :type context:
672
826
  """
673
827
  ...
674
828
 
675
- def pop(self): ...
829
+ def pop(self):
830
+ """ """
831
+ ...
832
+
676
833
  def prepend(self, draw_func):
677
834
  """
678
835
 
679
836
  :param draw_func:
680
- :type draw_func:
681
837
  """
682
838
  ...
683
839
 
684
- def property_overridable_library_set(self): ...
685
- def property_unset(self): ...
840
+ def property_overridable_library_set(self):
841
+ """ """
842
+ ...
843
+
844
+ def property_unset(self):
845
+ """ """
846
+ ...
847
+
686
848
  def remove(self, draw_func):
687
849
  """
688
850
 
689
851
  :param draw_func:
690
- :type draw_func:
691
852
  """
692
853
  ...
693
854
 
694
- def type_recast(self): ...
695
- def values(self): ...
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
+ """ """
696
865
 
697
- class DATA_PT_custom_props_arm(
698
- ArmatureButtonsPanel,
699
- bpy_types.Panel,
700
- rna_prop_ui.PropertyPanel,
701
- bpy_types._GenericUI,
702
- ):
703
866
  COMPAT_ENGINES: typing.Any
867
+ """ """
868
+
704
869
  bl_context: typing.Any
870
+ """ """
871
+
705
872
  bl_label: typing.Any
873
+ """ """
874
+
706
875
  bl_options: typing.Any
876
+ """ """
877
+
707
878
  bl_order: typing.Any
879
+ """ """
880
+
881
+ bl_parent_id: typing.Any
882
+ """ """
883
+
708
884
  bl_region_type: typing.Any
885
+ """ """
886
+
709
887
  bl_rna: typing.Any
888
+ """ """
889
+
710
890
  bl_space_type: typing.Any
891
+ """ """
892
+
711
893
  id_data: typing.Any
894
+ """ """
712
895
 
713
896
  def append(self, draw_func):
714
897
  """
715
898
 
716
899
  :param draw_func:
717
- :type draw_func:
718
900
  """
719
901
  ...
720
902
 
721
- def as_pointer(self): ...
722
- def bl_rna_get_subclass(self): ...
723
- def bl_rna_get_subclass_py(self): ...
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
+
724
915
  def draw(self, context):
725
916
  """
726
917
 
727
- :param self:
728
- :type self:
729
918
  :param context:
730
- :type context:
731
- """
732
- ...
733
-
734
- def driver_add(self): ...
735
- def driver_remove(self): ...
736
- def get(self): ...
737
- def id_properties_clear(self): ...
738
- def id_properties_ensure(self): ...
739
- def id_properties_ui(self): ...
740
- def is_extended(self): ...
741
- def is_property_hidden(self): ...
742
- def is_property_overridable_library(self): ...
743
- def is_property_readonly(self): ...
744
- def is_property_set(self): ...
745
- def items(self): ...
746
- def keyframe_delete(self): ...
747
- def keyframe_insert(self): ...
748
- def keys(self): ...
749
- def path_from_id(self): ...
750
- def path_resolve(self): ...
751
- def poll(self, context):
752
919
  """
920
+ ...
753
921
 
754
- :param context:
755
- :type context:
756
- """
922
+ def driver_add(self):
923
+ """ """
757
924
  ...
758
925
 
759
- def pop(self): ...
760
- def prepend(self, draw_func):
761
- """
926
+ def driver_remove(self):
927
+ """ """
928
+ ...
762
929
 
763
- :param draw_func:
764
- :type draw_func:
765
- """
930
+ def get(self):
931
+ """ """
766
932
  ...
767
933
 
768
- def property_overridable_library_set(self): ...
769
- def property_unset(self): ...
770
- def remove(self, draw_func):
771
- """
934
+ def id_properties_clear(self):
935
+ """ """
936
+ ...
772
937
 
773
- :param draw_func:
774
- :type draw_func:
775
- """
938
+ def id_properties_ensure(self):
939
+ """ """
776
940
  ...
777
941
 
778
- def type_recast(self): ...
779
- def values(self): ...
942
+ def id_properties_ui(self):
943
+ """ """
944
+ ...
780
945
 
781
- class DATA_PT_custom_props_bcoll(
782
- ArmatureButtonsPanel,
783
- bpy_types.Panel,
784
- rna_prop_ui.PropertyPanel,
785
- bpy_types._GenericUI,
786
- ):
787
- COMPAT_ENGINES: typing.Any
788
- bl_context: typing.Any
789
- bl_label: typing.Any
790
- bl_options: typing.Any
791
- bl_order: typing.Any
792
- bl_parent_id: typing.Any
793
- bl_region_type: typing.Any
794
- bl_rna: typing.Any
795
- bl_space_type: typing.Any
796
- id_data: typing.Any
946
+ def is_extended(self):
947
+ """ """
948
+ ...
797
949
 
798
- def append(self, draw_func):
799
- """
950
+ def is_property_hidden(self):
951
+ """ """
952
+ ...
800
953
 
801
- :param draw_func:
802
- :type draw_func:
803
- """
954
+ def is_property_overridable_library(self):
955
+ """ """
804
956
  ...
805
957
 
806
- def as_pointer(self): ...
807
- def bl_rna_get_subclass(self): ...
808
- def bl_rna_get_subclass_py(self): ...
809
- def draw(self, context):
810
- """
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
+ ...
811
989
 
812
- :param self:
813
- :type self:
814
- :param context:
815
- :type context:
816
- """
817
- ...
818
-
819
- def driver_add(self): ...
820
- def driver_remove(self): ...
821
- def get(self): ...
822
- def id_properties_clear(self): ...
823
- def id_properties_ensure(self): ...
824
- def id_properties_ui(self): ...
825
- def is_extended(self): ...
826
- def is_property_hidden(self): ...
827
- def is_property_overridable_library(self): ...
828
- def is_property_readonly(self): ...
829
- def is_property_set(self): ...
830
- def items(self): ...
831
- def keyframe_delete(self): ...
832
- def keyframe_insert(self): ...
833
- def keys(self): ...
834
- def path_from_id(self): ...
835
- def path_resolve(self): ...
836
990
  def poll(self, context):
837
991
  """
838
992
 
839
993
  :param context:
840
- :type context:
841
994
  """
842
995
  ...
843
996
 
844
- def pop(self): ...
997
+ def pop(self):
998
+ """ """
999
+ ...
1000
+
845
1001
  def prepend(self, draw_func):
846
1002
  """
847
1003
 
848
1004
  :param draw_func:
849
- :type draw_func:
850
1005
  """
851
1006
  ...
852
1007
 
853
- def property_overridable_library_set(self): ...
854
- def property_unset(self): ...
1008
+ def property_overridable_library_set(self):
1009
+ """ """
1010
+ ...
1011
+
1012
+ def property_unset(self):
1013
+ """ """
1014
+ ...
1015
+
855
1016
  def remove(self, draw_func):
856
1017
  """
857
1018
 
858
1019
  :param draw_func:
859
- :type draw_func:
860
1020
  """
861
1021
  ...
862
1022
 
863
- def type_recast(self): ...
864
- def values(self): ...
1023
+ def type_recast(self):
1024
+ """ """
1025
+ ...
1026
+
1027
+ def values(self):
1028
+ """ """
1029
+ ...
1030
+
1031
+ class DATA_PT_display(bpy_types._GenericUI):
1032
+ """ """
865
1033
 
866
- class DATA_PT_display(ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
867
1034
  bl_context: typing.Any
1035
+ """ """
1036
+
868
1037
  bl_label: typing.Any
1038
+ """ """
1039
+
869
1040
  bl_options: typing.Any
1041
+ """ """
1042
+
870
1043
  bl_region_type: typing.Any
1044
+ """ """
1045
+
871
1046
  bl_rna: typing.Any
1047
+ """ """
1048
+
872
1049
  bl_space_type: typing.Any
1050
+ """ """
1051
+
873
1052
  id_data: typing.Any
1053
+ """ """
874
1054
 
875
1055
  def append(self, draw_func):
876
1056
  """
877
1057
 
878
1058
  :param draw_func:
879
- :type draw_func:
880
1059
  """
881
1060
  ...
882
1061
 
883
- def as_pointer(self): ...
884
- def bl_rna_get_subclass(self): ...
885
- def bl_rna_get_subclass_py(self): ...
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
+
886
1074
  def draw(self, context):
887
1075
  """
888
1076
 
889
- :param self:
890
- :type self:
891
1077
  :param context:
892
- :type context:
893
- """
894
- ...
895
-
896
- def driver_add(self): ...
897
- def driver_remove(self): ...
898
- def get(self): ...
899
- def id_properties_clear(self): ...
900
- def id_properties_ensure(self): ...
901
- def id_properties_ui(self): ...
902
- def is_extended(self): ...
903
- def is_property_hidden(self): ...
904
- def is_property_overridable_library(self): ...
905
- def is_property_readonly(self): ...
906
- def is_property_set(self): ...
907
- def items(self): ...
908
- def keyframe_delete(self): ...
909
- def keyframe_insert(self): ...
910
- def keys(self): ...
911
- def path_from_id(self): ...
912
- def path_resolve(self): ...
913
- def poll(self, context):
914
1078
  """
1079
+ ...
915
1080
 
916
- :param context:
917
- :type context:
918
- """
1081
+ def driver_add(self):
1082
+ """ """
919
1083
  ...
920
1084
 
921
- def pop(self): ...
922
- def prepend(self, draw_func):
923
- """
1085
+ def driver_remove(self):
1086
+ """ """
1087
+ ...
924
1088
 
925
- :param draw_func:
926
- :type draw_func:
927
- """
1089
+ def get(self):
1090
+ """ """
928
1091
  ...
929
1092
 
930
- def property_overridable_library_set(self): ...
931
- def property_unset(self): ...
932
- def remove(self, draw_func):
933
- """
1093
+ def id_properties_clear(self):
1094
+ """ """
1095
+ ...
934
1096
 
935
- :param draw_func:
936
- :type draw_func:
937
- """
1097
+ def id_properties_ensure(self):
1098
+ """ """
938
1099
  ...
939
1100
 
940
- def type_recast(self): ...
941
- def values(self): ...
1101
+ def id_properties_ui(self):
1102
+ """ """
1103
+ ...
942
1104
 
943
- class DATA_PT_iksolver_itasc(
944
- ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
945
- ):
946
- bl_context: typing.Any
947
- bl_label: typing.Any
948
- bl_options: typing.Any
949
- bl_region_type: typing.Any
950
- bl_rna: typing.Any
951
- bl_space_type: typing.Any
952
- id_data: typing.Any
1105
+ def is_extended(self):
1106
+ """ """
1107
+ ...
953
1108
 
954
- def append(self, draw_func):
955
- """
1109
+ def is_property_hidden(self):
1110
+ """ """
1111
+ ...
956
1112
 
957
- :param draw_func:
958
- :type draw_func:
959
- """
1113
+ def is_property_overridable_library(self):
1114
+ """ """
960
1115
  ...
961
1116
 
962
- def as_pointer(self): ...
963
- def bl_rna_get_subclass(self): ...
964
- def bl_rna_get_subclass_py(self): ...
965
- def draw(self, context):
966
- """
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
+ ...
967
1148
 
968
- :param self:
969
- :type self:
970
- :param context:
971
- :type context:
972
- """
973
- ...
974
-
975
- def driver_add(self): ...
976
- def driver_remove(self): ...
977
- def get(self): ...
978
- def id_properties_clear(self): ...
979
- def id_properties_ensure(self): ...
980
- def id_properties_ui(self): ...
981
- def is_extended(self): ...
982
- def is_property_hidden(self): ...
983
- def is_property_overridable_library(self): ...
984
- def is_property_readonly(self): ...
985
- def is_property_set(self): ...
986
- def items(self): ...
987
- def keyframe_delete(self): ...
988
- def keyframe_insert(self): ...
989
- def keys(self): ...
990
- def path_from_id(self): ...
991
- def path_resolve(self): ...
992
1149
  def poll(self, context):
993
1150
  """
994
1151
 
995
1152
  :param context:
996
- :type context:
997
1153
  """
998
1154
  ...
999
1155
 
1000
- def pop(self): ...
1156
+ def pop(self):
1157
+ """ """
1158
+ ...
1159
+
1001
1160
  def prepend(self, draw_func):
1002
1161
  """
1003
1162
 
1004
1163
  :param draw_func:
1005
- :type draw_func:
1006
1164
  """
1007
1165
  ...
1008
1166
 
1009
- def property_overridable_library_set(self): ...
1010
- def property_unset(self): ...
1167
+ def property_overridable_library_set(self):
1168
+ """ """
1169
+ ...
1170
+
1171
+ def property_unset(self):
1172
+ """ """
1173
+ ...
1174
+
1011
1175
  def remove(self, draw_func):
1012
1176
  """
1013
1177
 
1014
1178
  :param draw_func:
1015
- :type draw_func:
1016
1179
  """
1017
1180
  ...
1018
1181
 
1019
- def type_recast(self): ...
1020
- def values(self): ...
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
+ """ """
1021
1192
 
1022
- class DATA_PT_pose(ArmatureButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
1023
1193
  bl_context: typing.Any
1194
+ """ """
1195
+
1024
1196
  bl_label: typing.Any
1197
+ """ """
1198
+
1199
+ bl_options: typing.Any
1200
+ """ """
1201
+
1025
1202
  bl_region_type: typing.Any
1203
+ """ """
1204
+
1026
1205
  bl_rna: typing.Any
1206
+ """ """
1207
+
1027
1208
  bl_space_type: typing.Any
1209
+ """ """
1210
+
1028
1211
  id_data: typing.Any
1212
+ """ """
1029
1213
 
1030
1214
  def append(self, draw_func):
1031
1215
  """
1032
1216
 
1033
1217
  :param draw_func:
1034
- :type draw_func:
1035
1218
  """
1036
1219
  ...
1037
1220
 
1038
- def as_pointer(self): ...
1039
- def bl_rna_get_subclass(self): ...
1040
- def bl_rna_get_subclass_py(self): ...
1041
- def draw(self, context):
1042
- """
1221
+ def as_pointer(self):
1222
+ """ """
1223
+ ...
1043
1224
 
1044
- :param self:
1045
- :type self:
1046
- :param context:
1047
- :type context:
1048
- """
1049
- ...
1050
-
1051
- def driver_add(self): ...
1052
- def driver_remove(self): ...
1053
- def get(self): ...
1054
- def id_properties_clear(self): ...
1055
- def id_properties_ensure(self): ...
1056
- def id_properties_ui(self): ...
1057
- def is_extended(self): ...
1058
- def is_property_hidden(self): ...
1059
- def is_property_overridable_library(self): ...
1060
- def is_property_readonly(self): ...
1061
- def is_property_set(self): ...
1062
- def items(self): ...
1063
- def keyframe_delete(self): ...
1064
- def keyframe_insert(self): ...
1065
- def keys(self): ...
1066
- def path_from_id(self): ...
1067
- def path_resolve(self): ...
1068
- def poll(self, context):
1069
- """
1225
+ def bl_rna_get_subclass(self):
1226
+ """ """
1227
+ ...
1070
1228
 
1071
- :param context:
1072
- :type context:
1073
- """
1229
+ def bl_rna_get_subclass_py(self):
1230
+ """ """
1074
1231
  ...
1075
1232
 
1076
- def pop(self): ...
1077
- def prepend(self, draw_func):
1233
+ def draw(self, context):
1078
1234
  """
1079
1235
 
1080
- :param draw_func:
1081
- :type draw_func:
1236
+ :param context:
1082
1237
  """
1083
1238
  ...
1084
1239
 
1085
- def property_overridable_library_set(self): ...
1086
- def property_unset(self): ...
1087
- def remove(self, draw_func):
1088
- """
1240
+ def driver_add(self):
1241
+ """ """
1242
+ ...
1089
1243
 
1090
- :param draw_func:
1091
- :type draw_func:
1092
- """
1244
+ def driver_remove(self):
1245
+ """ """
1093
1246
  ...
1094
1247
 
1095
- def type_recast(self): ...
1096
- def values(self): ...
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
+ """ """
1351
+
1352
+ bl_context: typing.Any
1353
+ """ """
1354
+
1355
+ bl_label: typing.Any
1356
+ """ """
1357
+
1358
+ bl_options: typing.Any
1359
+ """ """
1360
+
1361
+ bl_region_type: typing.Any
1362
+ """ """
1363
+
1364
+ bl_rna: typing.Any
1365
+ """ """
1366
+
1367
+ bl_space_type: typing.Any
1368
+ """ """
1369
+
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
+ ...
1995
+
1996
+ def values(self):
1997
+ """ """
1998
+ ...