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,841 +1,1647 @@
1
1
  import typing
2
2
  import bpy_types
3
- import rna_prop_ui
4
3
 
5
4
  GenericType = typing.TypeVar("GenericType")
6
5
 
7
- class BoneButtonsPanel:
6
+ class BONE_PT_collections(bpy_types._GenericUI):
7
+ """ """
8
+
8
9
  bl_context: typing.Any
10
+ """ """
11
+
12
+ bl_label: typing.Any
13
+ """ """
14
+
15
+ bl_parent_id: typing.Any
16
+ """ """
17
+
9
18
  bl_region_type: typing.Any
19
+ """ """
20
+
21
+ bl_rna: typing.Any
22
+ """ """
23
+
10
24
  bl_space_type: typing.Any
25
+ """ """
26
+
27
+ id_data: typing.Any
28
+ """ """
29
+
30
+ def append(self, draw_func):
31
+ """
32
+
33
+ :param draw_func:
34
+ """
35
+ ...
36
+
37
+ def as_pointer(self):
38
+ """ """
39
+ ...
40
+
41
+ def bl_rna_get_subclass(self):
42
+ """ """
43
+ ...
44
+
45
+ def bl_rna_get_subclass_py(self):
46
+ """ """
47
+ ...
48
+
49
+ def draw(self, context):
50
+ """
51
+
52
+ :param context:
53
+ """
54
+ ...
55
+
56
+ def driver_add(self):
57
+ """ """
58
+ ...
59
+
60
+ def driver_remove(self):
61
+ """ """
62
+ ...
63
+
64
+ def get(self):
65
+ """ """
66
+ ...
67
+
68
+ def id_properties_clear(self):
69
+ """ """
70
+ ...
71
+
72
+ def id_properties_ensure(self):
73
+ """ """
74
+ ...
75
+
76
+ def id_properties_ui(self):
77
+ """ """
78
+ ...
79
+
80
+ def is_extended(self):
81
+ """ """
82
+ ...
83
+
84
+ def is_property_hidden(self):
85
+ """ """
86
+ ...
87
+
88
+ def is_property_overridable_library(self):
89
+ """ """
90
+ ...
91
+
92
+ def is_property_readonly(self):
93
+ """ """
94
+ ...
95
+
96
+ def is_property_set(self):
97
+ """ """
98
+ ...
99
+
100
+ def items(self):
101
+ """ """
102
+ ...
103
+
104
+ def keyframe_delete(self):
105
+ """ """
106
+ ...
107
+
108
+ def keyframe_insert(self):
109
+ """ """
110
+ ...
111
+
112
+ def keys(self):
113
+ """ """
114
+ ...
115
+
116
+ def path_from_id(self):
117
+ """ """
118
+ ...
119
+
120
+ def path_resolve(self):
121
+ """ """
122
+ ...
11
123
 
12
124
  def poll(self, context):
13
125
  """
14
126
 
15
127
  :param context:
16
- :type context:
17
128
  """
18
129
  ...
19
130
 
20
- class BONE_PT_collections(bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
131
+ def pop(self):
132
+ """ """
133
+ ...
134
+
135
+ def prepend(self, draw_func):
136
+ """
137
+
138
+ :param draw_func:
139
+ """
140
+ ...
141
+
142
+ def property_overridable_library_set(self):
143
+ """ """
144
+ ...
145
+
146
+ def property_unset(self):
147
+ """ """
148
+ ...
149
+
150
+ def remove(self, draw_func):
151
+ """
152
+
153
+ :param draw_func:
154
+ """
155
+ ...
156
+
157
+ def type_recast(self):
158
+ """ """
159
+ ...
160
+
161
+ def values(self):
162
+ """ """
163
+ ...
164
+
165
+ class BONE_PT_context_bone(bpy_types._GenericUI):
166
+ """ """
167
+
21
168
  bl_context: typing.Any
169
+ """ """
170
+
22
171
  bl_label: typing.Any
23
- bl_parent_id: typing.Any
172
+ """ """
173
+
174
+ bl_options: typing.Any
175
+ """ """
176
+
24
177
  bl_region_type: typing.Any
178
+ """ """
179
+
25
180
  bl_rna: typing.Any
181
+ """ """
182
+
26
183
  bl_space_type: typing.Any
184
+ """ """
185
+
27
186
  id_data: typing.Any
187
+ """ """
28
188
 
29
189
  def append(self, draw_func):
30
190
  """
31
191
 
32
192
  :param draw_func:
33
- :type draw_func:
34
193
  """
35
194
  ...
36
195
 
37
- def as_pointer(self): ...
38
- def bl_rna_get_subclass(self): ...
39
- def bl_rna_get_subclass_py(self): ...
196
+ def as_pointer(self):
197
+ """ """
198
+ ...
199
+
200
+ def bl_rna_get_subclass(self):
201
+ """ """
202
+ ...
203
+
204
+ def bl_rna_get_subclass_py(self):
205
+ """ """
206
+ ...
207
+
40
208
  def draw(self, context):
41
209
  """
42
210
 
43
- :param self:
44
- :type self:
45
211
  :param context:
46
- :type context:
47
- """
48
- ...
49
-
50
- def driver_add(self): ...
51
- def driver_remove(self): ...
52
- def get(self): ...
53
- def id_properties_clear(self): ...
54
- def id_properties_ensure(self): ...
55
- def id_properties_ui(self): ...
56
- def is_extended(self): ...
57
- def is_property_hidden(self): ...
58
- def is_property_overridable_library(self): ...
59
- def is_property_readonly(self): ...
60
- def is_property_set(self): ...
61
- def items(self): ...
62
- def keyframe_delete(self): ...
63
- def keyframe_insert(self): ...
64
- def keys(self): ...
65
- def path_from_id(self): ...
66
- def path_resolve(self): ...
212
+ """
213
+ ...
214
+
215
+ def driver_add(self):
216
+ """ """
217
+ ...
218
+
219
+ def driver_remove(self):
220
+ """ """
221
+ ...
222
+
223
+ def get(self):
224
+ """ """
225
+ ...
226
+
227
+ def id_properties_clear(self):
228
+ """ """
229
+ ...
230
+
231
+ def id_properties_ensure(self):
232
+ """ """
233
+ ...
234
+
235
+ def id_properties_ui(self):
236
+ """ """
237
+ ...
238
+
239
+ def is_extended(self):
240
+ """ """
241
+ ...
242
+
243
+ def is_property_hidden(self):
244
+ """ """
245
+ ...
246
+
247
+ def is_property_overridable_library(self):
248
+ """ """
249
+ ...
250
+
251
+ def is_property_readonly(self):
252
+ """ """
253
+ ...
254
+
255
+ def is_property_set(self):
256
+ """ """
257
+ ...
258
+
259
+ def items(self):
260
+ """ """
261
+ ...
262
+
263
+ def keyframe_delete(self):
264
+ """ """
265
+ ...
266
+
267
+ def keyframe_insert(self):
268
+ """ """
269
+ ...
270
+
271
+ def keys(self):
272
+ """ """
273
+ ...
274
+
275
+ def path_from_id(self):
276
+ """ """
277
+ ...
278
+
279
+ def path_resolve(self):
280
+ """ """
281
+ ...
282
+
67
283
  def poll(self, context):
68
284
  """
69
285
 
70
286
  :param context:
71
- :type context:
72
287
  """
73
288
  ...
74
289
 
75
- def pop(self): ...
290
+ def pop(self):
291
+ """ """
292
+ ...
293
+
76
294
  def prepend(self, draw_func):
77
295
  """
78
296
 
79
297
  :param draw_func:
80
- :type draw_func:
81
298
  """
82
299
  ...
83
300
 
84
- def property_overridable_library_set(self): ...
85
- def property_unset(self): ...
301
+ def property_overridable_library_set(self):
302
+ """ """
303
+ ...
304
+
305
+ def property_unset(self):
306
+ """ """
307
+ ...
308
+
86
309
  def remove(self, draw_func):
87
310
  """
88
311
 
89
312
  :param draw_func:
90
- :type draw_func:
91
313
  """
92
314
  ...
93
315
 
94
- def type_recast(self): ...
95
- def values(self): ...
316
+ def type_recast(self):
317
+ """ """
318
+ ...
319
+
320
+ def values(self):
321
+ """ """
322
+ ...
323
+
324
+ class BONE_PT_curved(bpy_types._GenericUI):
325
+ """ """
96
326
 
97
- class BONE_PT_context_bone(bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
98
327
  bl_context: typing.Any
328
+ """ """
329
+
99
330
  bl_label: typing.Any
331
+ """ """
332
+
100
333
  bl_options: typing.Any
334
+ """ """
335
+
101
336
  bl_region_type: typing.Any
337
+ """ """
338
+
102
339
  bl_rna: typing.Any
340
+ """ """
341
+
103
342
  bl_space_type: typing.Any
343
+ """ """
344
+
104
345
  id_data: typing.Any
346
+ """ """
105
347
 
106
348
  def append(self, draw_func):
107
349
  """
108
350
 
109
351
  :param draw_func:
110
- :type draw_func:
111
352
  """
112
353
  ...
113
354
 
114
- def as_pointer(self): ...
115
- def bl_rna_get_subclass(self): ...
116
- def bl_rna_get_subclass_py(self): ...
355
+ def as_pointer(self):
356
+ """ """
357
+ ...
358
+
359
+ def bl_rna_get_subclass(self):
360
+ """ """
361
+ ...
362
+
363
+ def bl_rna_get_subclass_py(self):
364
+ """ """
365
+ ...
366
+
117
367
  def draw(self, context):
118
368
  """
119
369
 
120
- :param self:
121
- :type self:
122
370
  :param context:
123
- :type context:
124
- """
125
- ...
126
-
127
- def driver_add(self): ...
128
- def driver_remove(self): ...
129
- def get(self): ...
130
- def id_properties_clear(self): ...
131
- def id_properties_ensure(self): ...
132
- def id_properties_ui(self): ...
133
- def is_extended(self): ...
134
- def is_property_hidden(self): ...
135
- def is_property_overridable_library(self): ...
136
- def is_property_readonly(self): ...
137
- def is_property_set(self): ...
138
- def items(self): ...
139
- def keyframe_delete(self): ...
140
- def keyframe_insert(self): ...
141
- def keys(self): ...
142
- def path_from_id(self): ...
143
- def path_resolve(self): ...
371
+ """
372
+ ...
373
+
374
+ def driver_add(self):
375
+ """ """
376
+ ...
377
+
378
+ def driver_remove(self):
379
+ """ """
380
+ ...
381
+
382
+ def get(self):
383
+ """ """
384
+ ...
385
+
386
+ def id_properties_clear(self):
387
+ """ """
388
+ ...
389
+
390
+ def id_properties_ensure(self):
391
+ """ """
392
+ ...
393
+
394
+ def id_properties_ui(self):
395
+ """ """
396
+ ...
397
+
398
+ def is_extended(self):
399
+ """ """
400
+ ...
401
+
402
+ def is_property_hidden(self):
403
+ """ """
404
+ ...
405
+
406
+ def is_property_overridable_library(self):
407
+ """ """
408
+ ...
409
+
410
+ def is_property_readonly(self):
411
+ """ """
412
+ ...
413
+
414
+ def is_property_set(self):
415
+ """ """
416
+ ...
417
+
418
+ def items(self):
419
+ """ """
420
+ ...
421
+
422
+ def keyframe_delete(self):
423
+ """ """
424
+ ...
425
+
426
+ def keyframe_insert(self):
427
+ """ """
428
+ ...
429
+
430
+ def keys(self):
431
+ """ """
432
+ ...
433
+
434
+ def path_from_id(self):
435
+ """ """
436
+ ...
437
+
438
+ def path_resolve(self):
439
+ """ """
440
+ ...
441
+
144
442
  def poll(self, context):
145
443
  """
146
444
 
147
445
  :param context:
148
- :type context:
149
446
  """
150
447
  ...
151
448
 
152
- def pop(self): ...
449
+ def pop(self):
450
+ """ """
451
+ ...
452
+
153
453
  def prepend(self, draw_func):
154
454
  """
155
455
 
156
456
  :param draw_func:
157
- :type draw_func:
158
457
  """
159
458
  ...
160
459
 
161
- def property_overridable_library_set(self): ...
162
- def property_unset(self): ...
460
+ def property_overridable_library_set(self):
461
+ """ """
462
+ ...
463
+
464
+ def property_unset(self):
465
+ """ """
466
+ ...
467
+
163
468
  def remove(self, draw_func):
164
469
  """
165
470
 
166
471
  :param draw_func:
167
- :type draw_func:
168
472
  """
169
473
  ...
170
474
 
171
- def type_recast(self): ...
172
- def values(self): ...
475
+ def type_recast(self):
476
+ """ """
477
+ ...
478
+
479
+ def values(self):
480
+ """ """
481
+ ...
482
+
483
+ class BONE_PT_custom_props(bpy_types._GenericUI):
484
+ """ """
485
+
486
+ COMPAT_ENGINES: typing.Any
487
+ """ """
173
488
 
174
- class BONE_PT_curved(bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
175
489
  bl_context: typing.Any
490
+ """ """
491
+
176
492
  bl_label: typing.Any
493
+ """ """
494
+
177
495
  bl_options: typing.Any
496
+ """ """
497
+
498
+ bl_order: typing.Any
499
+ """ """
500
+
178
501
  bl_region_type: typing.Any
502
+ """ """
503
+
179
504
  bl_rna: typing.Any
505
+ """ """
506
+
180
507
  bl_space_type: typing.Any
508
+ """ """
509
+
181
510
  id_data: typing.Any
511
+ """ """
182
512
 
183
513
  def append(self, draw_func):
184
514
  """
185
515
 
186
516
  :param draw_func:
187
- :type draw_func:
188
517
  """
189
518
  ...
190
519
 
191
- def as_pointer(self): ...
192
- def bl_rna_get_subclass(self): ...
193
- def bl_rna_get_subclass_py(self): ...
520
+ def as_pointer(self):
521
+ """ """
522
+ ...
523
+
524
+ def bl_rna_get_subclass(self):
525
+ """ """
526
+ ...
527
+
528
+ def bl_rna_get_subclass_py(self):
529
+ """ """
530
+ ...
531
+
194
532
  def draw(self, context):
195
533
  """
196
534
 
197
- :param self:
198
- :type self:
199
- :param context:
200
- :type context:
201
- """
202
- ...
203
-
204
- def driver_add(self): ...
205
- def driver_remove(self): ...
206
- def get(self): ...
207
- def id_properties_clear(self): ...
208
- def id_properties_ensure(self): ...
209
- def id_properties_ui(self): ...
210
- def is_extended(self): ...
211
- def is_property_hidden(self): ...
212
- def is_property_overridable_library(self): ...
213
- def is_property_readonly(self): ...
214
- def is_property_set(self): ...
215
- def items(self): ...
216
- def keyframe_delete(self): ...
217
- def keyframe_insert(self): ...
218
- def keys(self): ...
219
- def path_from_id(self): ...
220
- def path_resolve(self): ...
535
+ :param context:
536
+ """
537
+ ...
538
+
539
+ def driver_add(self):
540
+ """ """
541
+ ...
542
+
543
+ def driver_remove(self):
544
+ """ """
545
+ ...
546
+
547
+ def get(self):
548
+ """ """
549
+ ...
550
+
551
+ def id_properties_clear(self):
552
+ """ """
553
+ ...
554
+
555
+ def id_properties_ensure(self):
556
+ """ """
557
+ ...
558
+
559
+ def id_properties_ui(self):
560
+ """ """
561
+ ...
562
+
563
+ def is_extended(self):
564
+ """ """
565
+ ...
566
+
567
+ def is_property_hidden(self):
568
+ """ """
569
+ ...
570
+
571
+ def is_property_overridable_library(self):
572
+ """ """
573
+ ...
574
+
575
+ def is_property_readonly(self):
576
+ """ """
577
+ ...
578
+
579
+ def is_property_set(self):
580
+ """ """
581
+ ...
582
+
583
+ def items(self):
584
+ """ """
585
+ ...
586
+
587
+ def keyframe_delete(self):
588
+ """ """
589
+ ...
590
+
591
+ def keyframe_insert(self):
592
+ """ """
593
+ ...
594
+
595
+ def keys(self):
596
+ """ """
597
+ ...
598
+
599
+ def path_from_id(self):
600
+ """ """
601
+ ...
602
+
603
+ def path_resolve(self):
604
+ """ """
605
+ ...
606
+
607
+ def poll(self, context):
608
+ """
609
+
610
+ :param context:
611
+ """
612
+ ...
613
+
614
+ def pop(self):
615
+ """ """
616
+ ...
617
+
618
+ def prepend(self, draw_func):
619
+ """
620
+
621
+ :param draw_func:
622
+ """
623
+ ...
624
+
625
+ def property_overridable_library_set(self):
626
+ """ """
627
+ ...
628
+
629
+ def property_unset(self):
630
+ """ """
631
+ ...
632
+
633
+ def remove(self, draw_func):
634
+ """
635
+
636
+ :param draw_func:
637
+ """
638
+ ...
639
+
640
+ def type_recast(self):
641
+ """ """
642
+ ...
643
+
644
+ def values(self):
645
+ """ """
646
+ ...
647
+
648
+ class BONE_PT_deform(bpy_types._GenericUI):
649
+ """ """
650
+
651
+ bl_context: typing.Any
652
+ """ """
653
+
654
+ bl_label: typing.Any
655
+ """ """
656
+
657
+ bl_options: typing.Any
658
+ """ """
659
+
660
+ bl_region_type: typing.Any
661
+ """ """
662
+
663
+ bl_rna: typing.Any
664
+ """ """
665
+
666
+ bl_space_type: typing.Any
667
+ """ """
668
+
669
+ id_data: typing.Any
670
+ """ """
671
+
672
+ def append(self, draw_func):
673
+ """
674
+
675
+ :param draw_func:
676
+ """
677
+ ...
678
+
679
+ def as_pointer(self):
680
+ """ """
681
+ ...
682
+
683
+ def bl_rna_get_subclass(self):
684
+ """ """
685
+ ...
686
+
687
+ def bl_rna_get_subclass_py(self):
688
+ """ """
689
+ ...
690
+
691
+ def draw(self, context):
692
+ """
693
+
694
+ :param context:
695
+ """
696
+ ...
697
+
698
+ def draw_header(self, context):
699
+ """
700
+
701
+ :param context:
702
+ """
703
+ ...
704
+
705
+ def driver_add(self):
706
+ """ """
707
+ ...
708
+
709
+ def driver_remove(self):
710
+ """ """
711
+ ...
712
+
713
+ def get(self):
714
+ """ """
715
+ ...
716
+
717
+ def id_properties_clear(self):
718
+ """ """
719
+ ...
720
+
721
+ def id_properties_ensure(self):
722
+ """ """
723
+ ...
724
+
725
+ def id_properties_ui(self):
726
+ """ """
727
+ ...
728
+
729
+ def is_extended(self):
730
+ """ """
731
+ ...
732
+
733
+ def is_property_hidden(self):
734
+ """ """
735
+ ...
736
+
737
+ def is_property_overridable_library(self):
738
+ """ """
739
+ ...
740
+
741
+ def is_property_readonly(self):
742
+ """ """
743
+ ...
744
+
745
+ def is_property_set(self):
746
+ """ """
747
+ ...
748
+
749
+ def items(self):
750
+ """ """
751
+ ...
752
+
753
+ def keyframe_delete(self):
754
+ """ """
755
+ ...
756
+
757
+ def keyframe_insert(self):
758
+ """ """
759
+ ...
760
+
761
+ def keys(self):
762
+ """ """
763
+ ...
764
+
765
+ def path_from_id(self):
766
+ """ """
767
+ ...
768
+
769
+ def path_resolve(self):
770
+ """ """
771
+ ...
772
+
773
+ def poll(self, context):
774
+ """
775
+
776
+ :param context:
777
+ """
778
+ ...
779
+
780
+ def pop(self):
781
+ """ """
782
+ ...
783
+
784
+ def prepend(self, draw_func):
785
+ """
786
+
787
+ :param draw_func:
788
+ """
789
+ ...
790
+
791
+ def property_overridable_library_set(self):
792
+ """ """
793
+ ...
794
+
795
+ def property_unset(self):
796
+ """ """
797
+ ...
798
+
799
+ def remove(self, draw_func):
800
+ """
801
+
802
+ :param draw_func:
803
+ """
804
+ ...
805
+
806
+ def type_recast(self):
807
+ """ """
808
+ ...
809
+
810
+ def values(self):
811
+ """ """
812
+ ...
813
+
814
+ class BONE_PT_display(bpy_types._GenericUI):
815
+ """ """
816
+
817
+ bl_context: typing.Any
818
+ """ """
819
+
820
+ bl_label: typing.Any
821
+ """ """
822
+
823
+ bl_options: typing.Any
824
+ """ """
825
+
826
+ bl_region_type: typing.Any
827
+ """ """
828
+
829
+ bl_rna: typing.Any
830
+ """ """
831
+
832
+ bl_space_type: typing.Any
833
+ """ """
834
+
835
+ id_data: typing.Any
836
+ """ """
837
+
838
+ def append(self, draw_func):
839
+ """
840
+
841
+ :param draw_func:
842
+ """
843
+ ...
844
+
845
+ def as_pointer(self):
846
+ """ """
847
+ ...
848
+
849
+ def bl_rna_get_subclass(self):
850
+ """ """
851
+ ...
852
+
853
+ def bl_rna_get_subclass_py(self):
854
+ """ """
855
+ ...
856
+
857
+ def draw(self, context):
858
+ """
859
+
860
+ :param context:
861
+ """
862
+ ...
863
+
864
+ def draw_bone(self, context, layout):
865
+ """
866
+
867
+ :param context:
868
+ :param layout:
869
+ """
870
+ ...
871
+
872
+ def draw_bone_color_ui(self, layout, bone_color):
873
+ """
874
+
875
+ :param layout:
876
+ :param bone_color:
877
+ """
878
+ ...
879
+
880
+ def draw_edit_bone(self, context, layout):
881
+ """
882
+
883
+ :param context:
884
+ :param layout:
885
+ """
886
+ ...
887
+
888
+ def driver_add(self):
889
+ """ """
890
+ ...
891
+
892
+ def driver_remove(self):
893
+ """ """
894
+ ...
895
+
896
+ def get(self):
897
+ """ """
898
+ ...
899
+
900
+ def id_properties_clear(self):
901
+ """ """
902
+ ...
903
+
904
+ def id_properties_ensure(self):
905
+ """ """
906
+ ...
907
+
908
+ def id_properties_ui(self):
909
+ """ """
910
+ ...
911
+
912
+ def is_extended(self):
913
+ """ """
914
+ ...
915
+
916
+ def is_property_hidden(self):
917
+ """ """
918
+ ...
919
+
920
+ def is_property_overridable_library(self):
921
+ """ """
922
+ ...
923
+
924
+ def is_property_readonly(self):
925
+ """ """
926
+ ...
927
+
928
+ def is_property_set(self):
929
+ """ """
930
+ ...
931
+
932
+ def items(self):
933
+ """ """
934
+ ...
935
+
936
+ def keyframe_delete(self):
937
+ """ """
938
+ ...
939
+
940
+ def keyframe_insert(self):
941
+ """ """
942
+ ...
943
+
944
+ def keys(self):
945
+ """ """
946
+ ...
947
+
948
+ def path_from_id(self):
949
+ """ """
950
+ ...
951
+
952
+ def path_resolve(self):
953
+ """ """
954
+ ...
955
+
956
+ def poll(self, context):
957
+ """
958
+
959
+ :param context:
960
+ """
961
+ ...
962
+
963
+ def pop(self):
964
+ """ """
965
+ ...
966
+
967
+ def prepend(self, draw_func):
968
+ """
969
+
970
+ :param draw_func:
971
+ """
972
+ ...
973
+
974
+ def property_overridable_library_set(self):
975
+ """ """
976
+ ...
977
+
978
+ def property_unset(self):
979
+ """ """
980
+ ...
981
+
982
+ def remove(self, draw_func):
983
+ """
984
+
985
+ :param draw_func:
986
+ """
987
+ ...
988
+
989
+ def type_recast(self):
990
+ """ """
991
+ ...
992
+
993
+ def values(self):
994
+ """ """
995
+ ...
996
+
997
+ class BONE_PT_display_custom_shape(bpy_types._GenericUI):
998
+ """ """
999
+
1000
+ bl_context: typing.Any
1001
+ """ """
1002
+
1003
+ bl_label: typing.Any
1004
+ """ """
1005
+
1006
+ bl_parent_id: typing.Any
1007
+ """ """
1008
+
1009
+ bl_region_type: typing.Any
1010
+ """ """
1011
+
1012
+ bl_rna: typing.Any
1013
+ """ """
1014
+
1015
+ bl_space_type: typing.Any
1016
+ """ """
1017
+
1018
+ id_data: typing.Any
1019
+ """ """
1020
+
1021
+ def append(self, draw_func):
1022
+ """
1023
+
1024
+ :param draw_func:
1025
+ """
1026
+ ...
1027
+
1028
+ def as_pointer(self):
1029
+ """ """
1030
+ ...
1031
+
1032
+ def bl_rna_get_subclass(self):
1033
+ """ """
1034
+ ...
1035
+
1036
+ def bl_rna_get_subclass_py(self):
1037
+ """ """
1038
+ ...
1039
+
1040
+ def draw(self, context):
1041
+ """
1042
+
1043
+ :param context:
1044
+ """
1045
+ ...
1046
+
1047
+ def driver_add(self):
1048
+ """ """
1049
+ ...
1050
+
1051
+ def driver_remove(self):
1052
+ """ """
1053
+ ...
1054
+
1055
+ def get(self):
1056
+ """ """
1057
+ ...
1058
+
1059
+ def id_properties_clear(self):
1060
+ """ """
1061
+ ...
1062
+
1063
+ def id_properties_ensure(self):
1064
+ """ """
1065
+ ...
1066
+
1067
+ def id_properties_ui(self):
1068
+ """ """
1069
+ ...
1070
+
1071
+ def is_extended(self):
1072
+ """ """
1073
+ ...
1074
+
1075
+ def is_property_hidden(self):
1076
+ """ """
1077
+ ...
1078
+
1079
+ def is_property_overridable_library(self):
1080
+ """ """
1081
+ ...
1082
+
1083
+ def is_property_readonly(self):
1084
+ """ """
1085
+ ...
1086
+
1087
+ def is_property_set(self):
1088
+ """ """
1089
+ ...
1090
+
1091
+ def items(self):
1092
+ """ """
1093
+ ...
1094
+
1095
+ def keyframe_delete(self):
1096
+ """ """
1097
+ ...
1098
+
1099
+ def keyframe_insert(self):
1100
+ """ """
1101
+ ...
1102
+
1103
+ def keys(self):
1104
+ """ """
1105
+ ...
1106
+
1107
+ def path_from_id(self):
1108
+ """ """
1109
+ ...
1110
+
1111
+ def path_resolve(self):
1112
+ """ """
1113
+ ...
1114
+
221
1115
  def poll(self, context):
222
1116
  """
223
1117
 
224
1118
  :param context:
225
- :type context:
226
1119
  """
227
1120
  ...
228
1121
 
229
- def pop(self): ...
1122
+ def pop(self):
1123
+ """ """
1124
+ ...
1125
+
230
1126
  def prepend(self, draw_func):
231
1127
  """
232
1128
 
233
1129
  :param draw_func:
234
- :type draw_func:
235
1130
  """
236
1131
  ...
237
1132
 
238
- def property_overridable_library_set(self): ...
239
- def property_unset(self): ...
1133
+ def property_overridable_library_set(self):
1134
+ """ """
1135
+ ...
1136
+
1137
+ def property_unset(self):
1138
+ """ """
1139
+ ...
1140
+
240
1141
  def remove(self, draw_func):
241
1142
  """
242
1143
 
243
1144
  :param draw_func:
244
- :type draw_func:
245
1145
  """
246
1146
  ...
247
1147
 
248
- def type_recast(self): ...
249
- def values(self): ...
1148
+ def type_recast(self):
1149
+ """ """
1150
+ ...
1151
+
1152
+ def values(self):
1153
+ """ """
1154
+ ...
1155
+
1156
+ class BONE_PT_inverse_kinematics(bpy_types._GenericUI):
1157
+ """ """
250
1158
 
251
- class BONE_PT_custom_props(
252
- bpy_types.Panel, BoneButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
253
- ):
254
- COMPAT_ENGINES: typing.Any
255
1159
  bl_context: typing.Any
1160
+ """ """
1161
+
256
1162
  bl_label: typing.Any
1163
+ """ """
1164
+
257
1165
  bl_options: typing.Any
258
- bl_order: typing.Any
1166
+ """ """
1167
+
259
1168
  bl_region_type: typing.Any
1169
+ """ """
1170
+
260
1171
  bl_rna: typing.Any
1172
+ """ """
1173
+
261
1174
  bl_space_type: typing.Any
1175
+ """ """
1176
+
262
1177
  id_data: typing.Any
1178
+ """ """
263
1179
 
264
1180
  def append(self, draw_func):
265
1181
  """
266
1182
 
267
1183
  :param draw_func:
268
- :type draw_func:
269
1184
  """
270
1185
  ...
271
1186
 
272
- def as_pointer(self): ...
273
- def bl_rna_get_subclass(self): ...
274
- def bl_rna_get_subclass_py(self): ...
1187
+ def as_pointer(self):
1188
+ """ """
1189
+ ...
1190
+
1191
+ def bl_rna_get_subclass(self):
1192
+ """ """
1193
+ ...
1194
+
1195
+ def bl_rna_get_subclass_py(self):
1196
+ """ """
1197
+ ...
1198
+
275
1199
  def draw(self, context):
276
1200
  """
277
1201
 
278
- :param self:
279
- :type self:
280
1202
  :param context:
281
- :type context:
282
- """
283
- ...
284
-
285
- def driver_add(self): ...
286
- def driver_remove(self): ...
287
- def get(self): ...
288
- def id_properties_clear(self): ...
289
- def id_properties_ensure(self): ...
290
- def id_properties_ui(self): ...
291
- def is_extended(self): ...
292
- def is_property_hidden(self): ...
293
- def is_property_overridable_library(self): ...
294
- def is_property_readonly(self): ...
295
- def is_property_set(self): ...
296
- def items(self): ...
297
- def keyframe_delete(self): ...
298
- def keyframe_insert(self): ...
299
- def keys(self): ...
300
- def path_from_id(self): ...
301
- def path_resolve(self): ...
302
- def poll(self, context):
303
1203
  """
1204
+ ...
304
1205
 
305
- :param context:
306
- :type context:
307
- """
1206
+ def driver_add(self):
1207
+ """ """
308
1208
  ...
309
1209
 
310
- def pop(self): ...
311
- def prepend(self, draw_func):
312
- """
1210
+ def driver_remove(self):
1211
+ """ """
1212
+ ...
313
1213
 
314
- :param draw_func:
315
- :type draw_func:
316
- """
1214
+ def get(self):
1215
+ """ """
317
1216
  ...
318
1217
 
319
- def property_overridable_library_set(self): ...
320
- def property_unset(self): ...
321
- def remove(self, draw_func):
322
- """
1218
+ def id_properties_clear(self):
1219
+ """ """
1220
+ ...
323
1221
 
324
- :param draw_func:
325
- :type draw_func:
326
- """
1222
+ def id_properties_ensure(self):
1223
+ """ """
327
1224
  ...
328
1225
 
329
- def type_recast(self): ...
330
- def values(self): ...
1226
+ def id_properties_ui(self):
1227
+ """ """
1228
+ ...
331
1229
 
332
- class BONE_PT_deform(bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
333
- bl_context: typing.Any
334
- bl_label: typing.Any
335
- bl_options: typing.Any
336
- bl_region_type: typing.Any
337
- bl_rna: typing.Any
338
- bl_space_type: typing.Any
339
- id_data: typing.Any
1230
+ def is_extended(self):
1231
+ """ """
1232
+ ...
340
1233
 
341
- def append(self, draw_func):
342
- """
1234
+ def is_property_hidden(self):
1235
+ """ """
1236
+ ...
343
1237
 
344
- :param draw_func:
345
- :type draw_func:
346
- """
1238
+ def is_property_overridable_library(self):
1239
+ """ """
347
1240
  ...
348
1241
 
349
- def as_pointer(self): ...
350
- def bl_rna_get_subclass(self): ...
351
- def bl_rna_get_subclass_py(self): ...
352
- def draw(self, context):
353
- """
1242
+ def is_property_readonly(self):
1243
+ """ """
1244
+ ...
354
1245
 
355
- :param self:
356
- :type self:
357
- :param context:
358
- :type context:
359
- """
1246
+ def is_property_set(self):
1247
+ """ """
360
1248
  ...
361
1249
 
362
- def draw_header(self, context):
363
- """
1250
+ def items(self):
1251
+ """ """
1252
+ ...
1253
+
1254
+ def keyframe_delete(self):
1255
+ """ """
1256
+ ...
1257
+
1258
+ def keyframe_insert(self):
1259
+ """ """
1260
+ ...
1261
+
1262
+ def keys(self):
1263
+ """ """
1264
+ ...
1265
+
1266
+ def path_from_id(self):
1267
+ """ """
1268
+ ...
1269
+
1270
+ def path_resolve(self):
1271
+ """ """
1272
+ ...
364
1273
 
365
- :param self:
366
- :type self:
367
- :param context:
368
- :type context:
369
- """
370
- ...
371
-
372
- def driver_add(self): ...
373
- def driver_remove(self): ...
374
- def get(self): ...
375
- def id_properties_clear(self): ...
376
- def id_properties_ensure(self): ...
377
- def id_properties_ui(self): ...
378
- def is_extended(self): ...
379
- def is_property_hidden(self): ...
380
- def is_property_overridable_library(self): ...
381
- def is_property_readonly(self): ...
382
- def is_property_set(self): ...
383
- def items(self): ...
384
- def keyframe_delete(self): ...
385
- def keyframe_insert(self): ...
386
- def keys(self): ...
387
- def path_from_id(self): ...
388
- def path_resolve(self): ...
389
1274
  def poll(self, context):
390
1275
  """
391
1276
 
392
1277
  :param context:
393
- :type context:
394
1278
  """
395
1279
  ...
396
1280
 
397
- def pop(self): ...
1281
+ def pop(self):
1282
+ """ """
1283
+ ...
1284
+
398
1285
  def prepend(self, draw_func):
399
1286
  """
400
1287
 
401
1288
  :param draw_func:
402
- :type draw_func:
403
1289
  """
404
1290
  ...
405
1291
 
406
- def property_overridable_library_set(self): ...
407
- def property_unset(self): ...
1292
+ def property_overridable_library_set(self):
1293
+ """ """
1294
+ ...
1295
+
1296
+ def property_unset(self):
1297
+ """ """
1298
+ ...
1299
+
408
1300
  def remove(self, draw_func):
409
1301
  """
410
1302
 
411
1303
  :param draw_func:
412
- :type draw_func:
413
1304
  """
414
1305
  ...
415
1306
 
416
- def type_recast(self): ...
417
- def values(self): ...
1307
+ def type_recast(self):
1308
+ """ """
1309
+ ...
1310
+
1311
+ def values(self):
1312
+ """ """
1313
+ ...
1314
+
1315
+ class BONE_PT_relations(bpy_types._GenericUI):
1316
+ """ """
418
1317
 
419
- class BONE_PT_display(bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
420
1318
  bl_context: typing.Any
1319
+ """ """
1320
+
421
1321
  bl_label: typing.Any
1322
+ """ """
1323
+
422
1324
  bl_options: typing.Any
1325
+ """ """
1326
+
423
1327
  bl_region_type: typing.Any
1328
+ """ """
1329
+
424
1330
  bl_rna: typing.Any
1331
+ """ """
1332
+
425
1333
  bl_space_type: typing.Any
1334
+ """ """
1335
+
426
1336
  id_data: typing.Any
1337
+ """ """
427
1338
 
428
1339
  def append(self, draw_func):
429
1340
  """
430
1341
 
431
1342
  :param draw_func:
432
- :type draw_func:
433
1343
  """
434
1344
  ...
435
1345
 
436
- def as_pointer(self): ...
437
- def bl_rna_get_subclass(self): ...
438
- def bl_rna_get_subclass_py(self): ...
1346
+ def as_pointer(self):
1347
+ """ """
1348
+ ...
1349
+
1350
+ def bl_rna_get_subclass(self):
1351
+ """ """
1352
+ ...
1353
+
1354
+ def bl_rna_get_subclass_py(self):
1355
+ """ """
1356
+ ...
1357
+
439
1358
  def draw(self, context):
440
1359
  """
441
1360
 
442
- :param self:
443
- :type self:
444
1361
  :param context:
445
- :type context:
446
1362
  """
447
1363
  ...
448
1364
 
449
- def draw_bone(self, context, layout):
450
- """
1365
+ def driver_add(self):
1366
+ """ """
1367
+ ...
451
1368
 
452
- :param self:
453
- :type self:
454
- :param context:
455
- :type context:
456
- :param layout:
457
- :type layout:
458
- """
1369
+ def driver_remove(self):
1370
+ """ """
459
1371
  ...
460
1372
 
461
- def draw_bone_color_ui(self, layout, bone_color):
462
- """
1373
+ def get(self):
1374
+ """ """
1375
+ ...
463
1376
 
464
- :param self:
465
- :type self:
466
- :param layout:
467
- :type layout:
468
- :param bone_color:
469
- :type bone_color:
470
- """
1377
+ def id_properties_clear(self):
1378
+ """ """
471
1379
  ...
472
1380
 
473
- def draw_edit_bone(self, context, layout):
474
- """
1381
+ def id_properties_ensure(self):
1382
+ """ """
1383
+ ...
475
1384
 
476
- :param self:
477
- :type self:
478
- :param context:
479
- :type context:
480
- :param layout:
481
- :type layout:
482
- """
483
- ...
484
-
485
- def driver_add(self): ...
486
- def driver_remove(self): ...
487
- def get(self): ...
488
- def id_properties_clear(self): ...
489
- def id_properties_ensure(self): ...
490
- def id_properties_ui(self): ...
491
- def is_extended(self): ...
492
- def is_property_hidden(self): ...
493
- def is_property_overridable_library(self): ...
494
- def is_property_readonly(self): ...
495
- def is_property_set(self): ...
496
- def items(self): ...
497
- def keyframe_delete(self): ...
498
- def keyframe_insert(self): ...
499
- def keys(self): ...
500
- def path_from_id(self): ...
501
- def path_resolve(self): ...
502
- def poll(self, context):
503
- """
1385
+ def id_properties_ui(self):
1386
+ """ """
1387
+ ...
504
1388
 
505
- :param context:
506
- :type context:
507
- """
1389
+ def is_extended(self):
1390
+ """ """
508
1391
  ...
509
1392
 
510
- def pop(self): ...
511
- def prepend(self, draw_func):
512
- """
1393
+ def is_property_hidden(self):
1394
+ """ """
1395
+ ...
513
1396
 
514
- :param draw_func:
515
- :type draw_func:
516
- """
1397
+ def is_property_overridable_library(self):
1398
+ """ """
517
1399
  ...
518
1400
 
519
- def property_overridable_library_set(self): ...
520
- def property_unset(self): ...
521
- def remove(self, draw_func):
522
- """
1401
+ def is_property_readonly(self):
1402
+ """ """
1403
+ ...
523
1404
 
524
- :param draw_func:
525
- :type draw_func:
526
- """
1405
+ def is_property_set(self):
1406
+ """ """
527
1407
  ...
528
1408
 
529
- def type_recast(self): ...
530
- def values(self): ...
1409
+ def items(self):
1410
+ """ """
1411
+ ...
531
1412
 
532
- class BONE_PT_display_custom_shape(
533
- bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI
534
- ):
535
- bl_context: typing.Any
536
- bl_label: typing.Any
537
- bl_parent_id: typing.Any
538
- bl_region_type: typing.Any
539
- bl_rna: typing.Any
540
- bl_space_type: typing.Any
541
- id_data: typing.Any
1413
+ def keyframe_delete(self):
1414
+ """ """
1415
+ ...
542
1416
 
543
- def append(self, draw_func):
544
- """
1417
+ def keyframe_insert(self):
1418
+ """ """
1419
+ ...
545
1420
 
546
- :param draw_func:
547
- :type draw_func:
548
- """
1421
+ def keys(self):
1422
+ """ """
549
1423
  ...
550
1424
 
551
- def as_pointer(self): ...
552
- def bl_rna_get_subclass(self): ...
553
- def bl_rna_get_subclass_py(self): ...
554
- def draw(self, context):
555
- """
1425
+ def path_from_id(self):
1426
+ """ """
1427
+ ...
1428
+
1429
+ def path_resolve(self):
1430
+ """ """
1431
+ ...
556
1432
 
557
- :param self:
558
- :type self:
559
- :param context:
560
- :type context:
561
- """
562
- ...
563
-
564
- def driver_add(self): ...
565
- def driver_remove(self): ...
566
- def get(self): ...
567
- def id_properties_clear(self): ...
568
- def id_properties_ensure(self): ...
569
- def id_properties_ui(self): ...
570
- def is_extended(self): ...
571
- def is_property_hidden(self): ...
572
- def is_property_overridable_library(self): ...
573
- def is_property_readonly(self): ...
574
- def is_property_set(self): ...
575
- def items(self): ...
576
- def keyframe_delete(self): ...
577
- def keyframe_insert(self): ...
578
- def keys(self): ...
579
- def path_from_id(self): ...
580
- def path_resolve(self): ...
581
1433
  def poll(self, context):
582
1434
  """
583
1435
 
584
1436
  :param context:
585
- :type context:
586
1437
  """
587
1438
  ...
588
1439
 
589
- def pop(self): ...
1440
+ def pop(self):
1441
+ """ """
1442
+ ...
1443
+
590
1444
  def prepend(self, draw_func):
591
1445
  """
592
1446
 
593
1447
  :param draw_func:
594
- :type draw_func:
595
1448
  """
596
1449
  ...
597
1450
 
598
- def property_overridable_library_set(self): ...
599
- def property_unset(self): ...
1451
+ def property_overridable_library_set(self):
1452
+ """ """
1453
+ ...
1454
+
1455
+ def property_unset(self):
1456
+ """ """
1457
+ ...
1458
+
600
1459
  def remove(self, draw_func):
601
1460
  """
602
1461
 
603
1462
  :param draw_func:
604
- :type draw_func:
605
1463
  """
606
1464
  ...
607
1465
 
608
- def type_recast(self): ...
609
- def values(self): ...
1466
+ def type_recast(self):
1467
+ """ """
1468
+ ...
1469
+
1470
+ def values(self):
1471
+ """ """
1472
+ ...
1473
+
1474
+ class BONE_PT_transform(bpy_types._GenericUI):
1475
+ """ """
610
1476
 
611
- class BONE_PT_inverse_kinematics(
612
- bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI
613
- ):
614
1477
  bl_context: typing.Any
1478
+ """ """
1479
+
615
1480
  bl_label: typing.Any
616
- bl_options: typing.Any
1481
+ """ """
1482
+
617
1483
  bl_region_type: typing.Any
1484
+ """ """
1485
+
618
1486
  bl_rna: typing.Any
1487
+ """ """
1488
+
619
1489
  bl_space_type: typing.Any
1490
+ """ """
1491
+
620
1492
  id_data: typing.Any
1493
+ """ """
621
1494
 
622
1495
  def append(self, draw_func):
623
1496
  """
624
1497
 
625
1498
  :param draw_func:
626
- :type draw_func:
627
1499
  """
628
1500
  ...
629
1501
 
630
- def as_pointer(self): ...
631
- def bl_rna_get_subclass(self): ...
632
- def bl_rna_get_subclass_py(self): ...
633
- def draw(self, context):
634
- """
1502
+ def as_pointer(self):
1503
+ """ """
1504
+ ...
635
1505
 
636
- :param self:
637
- :type self:
638
- :param context:
639
- :type context:
640
- """
641
- ...
642
-
643
- def driver_add(self): ...
644
- def driver_remove(self): ...
645
- def get(self): ...
646
- def id_properties_clear(self): ...
647
- def id_properties_ensure(self): ...
648
- def id_properties_ui(self): ...
649
- def is_extended(self): ...
650
- def is_property_hidden(self): ...
651
- def is_property_overridable_library(self): ...
652
- def is_property_readonly(self): ...
653
- def is_property_set(self): ...
654
- def items(self): ...
655
- def keyframe_delete(self): ...
656
- def keyframe_insert(self): ...
657
- def keys(self): ...
658
- def path_from_id(self): ...
659
- def path_resolve(self): ...
660
- def poll(self, context):
661
- """
1506
+ def bl_rna_get_subclass(self):
1507
+ """ """
1508
+ ...
662
1509
 
663
- :param context:
664
- :type context:
665
- """
1510
+ def bl_rna_get_subclass_py(self):
1511
+ """ """
666
1512
  ...
667
1513
 
668
- def pop(self): ...
669
- def prepend(self, draw_func):
1514
+ def draw(self, context):
670
1515
  """
671
1516
 
672
- :param draw_func:
673
- :type draw_func:
1517
+ :param context:
674
1518
  """
675
1519
  ...
676
1520
 
677
- def property_overridable_library_set(self): ...
678
- def property_unset(self): ...
679
- def remove(self, draw_func):
680
- """
681
-
682
- :param draw_func:
683
- :type draw_func:
684
- """
1521
+ def driver_add(self):
1522
+ """ """
685
1523
  ...
686
1524
 
687
- def type_recast(self): ...
688
- def values(self): ...
1525
+ def driver_remove(self):
1526
+ """ """
1527
+ ...
689
1528
 
690
- class BONE_PT_relations(bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
691
- bl_context: typing.Any
692
- bl_label: typing.Any
693
- bl_options: typing.Any
694
- bl_region_type: typing.Any
695
- bl_rna: typing.Any
696
- bl_space_type: typing.Any
697
- id_data: typing.Any
1529
+ def get(self):
1530
+ """ """
1531
+ ...
698
1532
 
699
- def append(self, draw_func):
700
- """
1533
+ def id_properties_clear(self):
1534
+ """ """
1535
+ ...
701
1536
 
702
- :param draw_func:
703
- :type draw_func:
704
- """
1537
+ def id_properties_ensure(self):
1538
+ """ """
705
1539
  ...
706
1540
 
707
- def as_pointer(self): ...
708
- def bl_rna_get_subclass(self): ...
709
- def bl_rna_get_subclass_py(self): ...
710
- def draw(self, context):
711
- """
1541
+ def id_properties_ui(self):
1542
+ """ """
1543
+ ...
712
1544
 
713
- :param self:
714
- :type self:
715
- :param context:
716
- :type context:
717
- """
718
- ...
719
-
720
- def driver_add(self): ...
721
- def driver_remove(self): ...
722
- def get(self): ...
723
- def id_properties_clear(self): ...
724
- def id_properties_ensure(self): ...
725
- def id_properties_ui(self): ...
726
- def is_extended(self): ...
727
- def is_property_hidden(self): ...
728
- def is_property_overridable_library(self): ...
729
- def is_property_readonly(self): ...
730
- def is_property_set(self): ...
731
- def items(self): ...
732
- def keyframe_delete(self): ...
733
- def keyframe_insert(self): ...
734
- def keys(self): ...
735
- def path_from_id(self): ...
736
- def path_resolve(self): ...
737
- def poll(self, context):
738
- """
1545
+ def is_extended(self):
1546
+ """ """
1547
+ ...
739
1548
 
740
- :param context:
741
- :type context:
742
- """
1549
+ def is_property_hidden(self):
1550
+ """ """
743
1551
  ...
744
1552
 
745
- def pop(self): ...
746
- def prepend(self, draw_func):
747
- """
1553
+ def is_property_overridable_library(self):
1554
+ """ """
1555
+ ...
748
1556
 
749
- :param draw_func:
750
- :type draw_func:
751
- """
1557
+ def is_property_readonly(self):
1558
+ """ """
752
1559
  ...
753
1560
 
754
- def property_overridable_library_set(self): ...
755
- def property_unset(self): ...
756
- def remove(self, draw_func):
757
- """
1561
+ def is_property_set(self):
1562
+ """ """
1563
+ ...
758
1564
 
759
- :param draw_func:
760
- :type draw_func:
761
- """
1565
+ def items(self):
1566
+ """ """
762
1567
  ...
763
1568
 
764
- def type_recast(self): ...
765
- def values(self): ...
1569
+ def keyframe_delete(self):
1570
+ """ """
1571
+ ...
766
1572
 
767
- class BONE_PT_transform(bpy_types.Panel, BoneButtonsPanel, bpy_types._GenericUI):
768
- bl_context: typing.Any
769
- bl_label: typing.Any
770
- bl_region_type: typing.Any
771
- bl_rna: typing.Any
772
- bl_space_type: typing.Any
773
- id_data: typing.Any
1573
+ def keyframe_insert(self):
1574
+ """ """
1575
+ ...
774
1576
 
775
- def append(self, draw_func):
776
- """
1577
+ def keys(self):
1578
+ """ """
1579
+ ...
777
1580
 
778
- :param draw_func:
779
- :type draw_func:
780
- """
1581
+ def path_from_id(self):
1582
+ """ """
781
1583
  ...
782
1584
 
783
- def as_pointer(self): ...
784
- def bl_rna_get_subclass(self): ...
785
- def bl_rna_get_subclass_py(self): ...
786
- def draw(self, context):
787
- """
1585
+ def path_resolve(self):
1586
+ """ """
1587
+ ...
788
1588
 
789
- :param self:
790
- :type self:
791
- :param context:
792
- :type context:
793
- """
794
- ...
795
-
796
- def driver_add(self): ...
797
- def driver_remove(self): ...
798
- def get(self): ...
799
- def id_properties_clear(self): ...
800
- def id_properties_ensure(self): ...
801
- def id_properties_ui(self): ...
802
- def is_extended(self): ...
803
- def is_property_hidden(self): ...
804
- def is_property_overridable_library(self): ...
805
- def is_property_readonly(self): ...
806
- def is_property_set(self): ...
807
- def items(self): ...
808
- def keyframe_delete(self): ...
809
- def keyframe_insert(self): ...
810
- def keys(self): ...
811
- def path_from_id(self): ...
812
- def path_resolve(self): ...
813
1589
  def poll(self, context):
814
1590
  """
815
1591
 
816
1592
  :param context:
817
- :type context:
818
1593
  """
819
1594
  ...
820
1595
 
821
- def pop(self): ...
1596
+ def pop(self):
1597
+ """ """
1598
+ ...
1599
+
822
1600
  def prepend(self, draw_func):
823
1601
  """
824
1602
 
825
1603
  :param draw_func:
826
- :type draw_func:
827
1604
  """
828
1605
  ...
829
1606
 
830
- def property_overridable_library_set(self): ...
831
- def property_unset(self): ...
1607
+ def property_overridable_library_set(self):
1608
+ """ """
1609
+ ...
1610
+
1611
+ def property_unset(self):
1612
+ """ """
1613
+ ...
1614
+
832
1615
  def remove(self, draw_func):
833
1616
  """
834
1617
 
835
1618
  :param draw_func:
836
- :type draw_func:
837
1619
  """
838
1620
  ...
839
1621
 
840
- def type_recast(self): ...
841
- def values(self): ...
1622
+ def type_recast(self):
1623
+ """ """
1624
+ ...
1625
+
1626
+ def values(self):
1627
+ """ """
1628
+ ...
1629
+
1630
+ class BoneButtonsPanel:
1631
+ """ """
1632
+
1633
+ bl_context: typing.Any
1634
+ """ """
1635
+
1636
+ bl_region_type: typing.Any
1637
+ """ """
1638
+
1639
+ bl_space_type: typing.Any
1640
+ """ """
1641
+
1642
+ def poll(self, context):
1643
+ """
1644
+
1645
+ :param context:
1646
+ """
1647
+ ...