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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/pose/__init__.pyi CHANGED
@@ -4,35 +4,33 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def armature_apply(
7
- override_context=None,
8
- execution_context=None,
9
- undo=None,
10
- *,
11
- selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
7
+ override_context: typing.Union[dict, bpy.types.Context] = None,
8
+ execution_context: typing.Union[str, int] = None,
9
+ undo: bool = None,
10
+ selected: typing.Union[bool, typing.Any] = False,
12
11
  ):
13
12
  """Apply the current pose as the new rest pose
14
13
 
15
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
16
- :type execution_context: typing.Optional[typing.Union[int, str]]
17
- :type undo: typing.Optional[bool]
14
+ :type override_context: typing.Union[dict, bpy.types.Context]
15
+ :type execution_context: typing.Union[str, int]
16
+ :type undo: bool
18
17
  :param selected: Selected Only, Only apply the selected bones (with propagation to children)
19
- :type selected: typing.Optional[typing.Union[bool, typing.Any]]
18
+ :type selected: typing.Union[bool, typing.Any]
20
19
  """
21
20
 
22
21
  ...
23
22
 
24
23
  def autoside_names(
25
- override_context=None,
26
- execution_context=None,
27
- undo=None,
28
- *,
29
- axis: typing.Optional[typing.Any] = "XAXIS",
24
+ override_context: typing.Union[dict, bpy.types.Context] = None,
25
+ execution_context: typing.Union[str, int] = None,
26
+ undo: bool = None,
27
+ axis: typing.Any = "XAXIS",
30
28
  ):
31
29
  """Automatically renames the selected bones according to which side of the target axis they fall on
32
30
 
33
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
34
- :type execution_context: typing.Optional[typing.Union[int, str]]
35
- :type undo: typing.Optional[bool]
31
+ :type override_context: typing.Union[dict, bpy.types.Context]
32
+ :type execution_context: typing.Union[str, int]
33
+ :type undo: bool
36
34
  :param axis: Axis, Axis to tag names with
37
35
 
38
36
  XAXIS
@@ -43,33 +41,32 @@ def autoside_names(
43
41
 
44
42
  ZAXIS
45
43
  Z-Axis -- Top/Bottom.
46
- :type axis: typing.Optional[typing.Any]
44
+ :type axis: typing.Any
47
45
  """
48
46
 
49
47
  ...
50
48
 
51
49
  def blend_to_neighbor(
52
- override_context=None,
53
- execution_context=None,
54
- undo=None,
55
- *,
56
- factor: typing.Optional[typing.Any] = 0.5,
57
- prev_frame: typing.Optional[typing.Any] = 0,
58
- next_frame: typing.Optional[typing.Any] = 0,
59
- channels: typing.Optional[typing.Any] = "ALL",
60
- axis_lock: typing.Optional[typing.Any] = "FREE",
50
+ override_context: typing.Union[dict, bpy.types.Context] = None,
51
+ execution_context: typing.Union[str, int] = None,
52
+ undo: bool = None,
53
+ factor: typing.Any = 0.5,
54
+ prev_frame: typing.Any = 0,
55
+ next_frame: typing.Any = 0,
56
+ channels: typing.Any = "ALL",
57
+ axis_lock: typing.Any = "FREE",
61
58
  ):
62
59
  """Blend from current position to previous or next keyframe
63
60
 
64
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
65
- :type execution_context: typing.Optional[typing.Union[int, str]]
66
- :type undo: typing.Optional[bool]
61
+ :type override_context: typing.Union[dict, bpy.types.Context]
62
+ :type execution_context: typing.Union[str, int]
63
+ :type undo: bool
67
64
  :param factor: Factor, Weighting factor for which keyframe is favored more
68
- :type factor: typing.Optional[typing.Any]
65
+ :type factor: typing.Any
69
66
  :param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
70
- :type prev_frame: typing.Optional[typing.Any]
67
+ :type prev_frame: typing.Any
71
68
  :param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
72
- :type next_frame: typing.Optional[typing.Any]
69
+ :type next_frame: typing.Any
73
70
  :param channels: Channels, Set of properties that are affected
74
71
 
75
72
  ALL
@@ -89,7 +86,7 @@ def blend_to_neighbor(
89
86
 
90
87
  CUSTOM
91
88
  Custom Properties -- Custom properties.
92
- :type channels: typing.Optional[typing.Any]
89
+ :type channels: typing.Any
93
90
  :param axis_lock: Axis Lock, Transform axis to restrict effects to
94
91
 
95
92
  FREE
@@ -103,33 +100,32 @@ def blend_to_neighbor(
103
100
 
104
101
  Z
105
102
  Z -- Only Z-axis transforms are affected.
106
- :type axis_lock: typing.Optional[typing.Any]
103
+ :type axis_lock: typing.Any
107
104
  """
108
105
 
109
106
  ...
110
107
 
111
108
  def blend_with_rest(
112
- override_context=None,
113
- execution_context=None,
114
- undo=None,
115
- *,
116
- factor: typing.Optional[typing.Any] = 0.5,
117
- prev_frame: typing.Optional[typing.Any] = 0,
118
- next_frame: typing.Optional[typing.Any] = 0,
119
- channels: typing.Optional[typing.Any] = "ALL",
120
- axis_lock: typing.Optional[typing.Any] = "FREE",
109
+ override_context: typing.Union[dict, bpy.types.Context] = None,
110
+ execution_context: typing.Union[str, int] = None,
111
+ undo: bool = None,
112
+ factor: typing.Any = 0.5,
113
+ prev_frame: typing.Any = 0,
114
+ next_frame: typing.Any = 0,
115
+ channels: typing.Any = "ALL",
116
+ axis_lock: typing.Any = "FREE",
121
117
  ):
122
118
  """Make the current pose more similar to, or further away from, the rest pose
123
119
 
124
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
125
- :type execution_context: typing.Optional[typing.Union[int, str]]
126
- :type undo: typing.Optional[bool]
120
+ :type override_context: typing.Union[dict, bpy.types.Context]
121
+ :type execution_context: typing.Union[str, int]
122
+ :type undo: bool
127
123
  :param factor: Factor, Weighting factor for which keyframe is favored more
128
- :type factor: typing.Optional[typing.Any]
124
+ :type factor: typing.Any
129
125
  :param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
130
- :type prev_frame: typing.Optional[typing.Any]
126
+ :type prev_frame: typing.Any
131
127
  :param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
132
- :type next_frame: typing.Optional[typing.Any]
128
+ :type next_frame: typing.Any
133
129
  :param channels: Channels, Set of properties that are affected
134
130
 
135
131
  ALL
@@ -149,7 +145,7 @@ def blend_with_rest(
149
145
 
150
146
  CUSTOM
151
147
  Custom Properties -- Custom properties.
152
- :type channels: typing.Optional[typing.Any]
148
+ :type channels: typing.Any
153
149
  :param axis_lock: Axis Lock, Transform axis to restrict effects to
154
150
 
155
151
  FREE
@@ -163,33 +159,32 @@ def blend_with_rest(
163
159
 
164
160
  Z
165
161
  Z -- Only Z-axis transforms are affected.
166
- :type axis_lock: typing.Optional[typing.Any]
162
+ :type axis_lock: typing.Any
167
163
  """
168
164
 
169
165
  ...
170
166
 
171
167
  def breakdown(
172
- override_context=None,
173
- execution_context=None,
174
- undo=None,
175
- *,
176
- factor: typing.Optional[typing.Any] = 0.5,
177
- prev_frame: typing.Optional[typing.Any] = 0,
178
- next_frame: typing.Optional[typing.Any] = 0,
179
- channels: typing.Optional[typing.Any] = "ALL",
180
- axis_lock: typing.Optional[typing.Any] = "FREE",
168
+ override_context: typing.Union[dict, bpy.types.Context] = None,
169
+ execution_context: typing.Union[str, int] = None,
170
+ undo: bool = None,
171
+ factor: typing.Any = 0.5,
172
+ prev_frame: typing.Any = 0,
173
+ next_frame: typing.Any = 0,
174
+ channels: typing.Any = "ALL",
175
+ axis_lock: typing.Any = "FREE",
181
176
  ):
182
177
  """Create a suitable breakdown pose on the current frame
183
178
 
184
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
185
- :type execution_context: typing.Optional[typing.Union[int, str]]
186
- :type undo: typing.Optional[bool]
179
+ :type override_context: typing.Union[dict, bpy.types.Context]
180
+ :type execution_context: typing.Union[str, int]
181
+ :type undo: bool
187
182
  :param factor: Factor, Weighting factor for which keyframe is favored more
188
- :type factor: typing.Optional[typing.Any]
183
+ :type factor: typing.Any
189
184
  :param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
190
- :type prev_frame: typing.Optional[typing.Any]
185
+ :type prev_frame: typing.Any
191
186
  :param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
192
- :type next_frame: typing.Optional[typing.Any]
187
+ :type next_frame: typing.Any
193
188
  :param channels: Channels, Set of properties that are affected
194
189
 
195
190
  ALL
@@ -209,7 +204,7 @@ def breakdown(
209
204
 
210
205
  CUSTOM
211
206
  Custom Properties -- Custom properties.
212
- :type channels: typing.Optional[typing.Any]
207
+ :type channels: typing.Any
213
208
  :param axis_lock: Axis Lock, Transform axis to restrict effects to
214
209
 
215
210
  FREE
@@ -223,247 +218,266 @@ def breakdown(
223
218
 
224
219
  Z
225
220
  Z -- Only Z-axis transforms are affected.
226
- :type axis_lock: typing.Optional[typing.Any]
221
+ :type axis_lock: typing.Any
227
222
  """
228
223
 
229
224
  ...
230
225
 
231
226
  def constraint_add(
232
- override_context=None,
233
- execution_context=None,
234
- undo=None,
235
- *,
236
- type: typing.Optional[typing.Any] = "",
227
+ override_context: typing.Union[dict, bpy.types.Context] = None,
228
+ execution_context: typing.Union[str, int] = None,
229
+ undo: bool = None,
230
+ type: typing.Any = "",
237
231
  ):
238
232
  """Add a constraint to the active bone
239
233
 
240
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
241
- :type execution_context: typing.Optional[typing.Union[int, str]]
242
- :type undo: typing.Optional[bool]
234
+ :type override_context: typing.Union[dict, bpy.types.Context]
235
+ :type execution_context: typing.Union[str, int]
236
+ :type undo: bool
243
237
  :param type: Type
244
- :type type: typing.Optional[typing.Any]
238
+ :type type: typing.Any
245
239
  """
246
240
 
247
241
  ...
248
242
 
249
243
  def constraint_add_with_targets(
250
- override_context=None,
251
- execution_context=None,
252
- undo=None,
253
- *,
254
- type: typing.Optional[typing.Any] = "",
244
+ override_context: typing.Union[dict, bpy.types.Context] = None,
245
+ execution_context: typing.Union[str, int] = None,
246
+ undo: bool = None,
247
+ type: typing.Any = "",
255
248
  ):
256
249
  """Add a constraint to the active bone, with target (where applicable) set to the selected Objects/Bones
257
250
 
258
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
259
- :type execution_context: typing.Optional[typing.Union[int, str]]
260
- :type undo: typing.Optional[bool]
251
+ :type override_context: typing.Union[dict, bpy.types.Context]
252
+ :type execution_context: typing.Union[str, int]
253
+ :type undo: bool
261
254
  :param type: Type
262
- :type type: typing.Optional[typing.Any]
255
+ :type type: typing.Any
263
256
  """
264
257
 
265
258
  ...
266
259
 
267
- def constraints_clear(override_context=None, execution_context=None, undo=None):
260
+ def constraints_clear(
261
+ override_context: typing.Union[dict, bpy.types.Context] = None,
262
+ execution_context: typing.Union[str, int] = None,
263
+ undo: bool = None,
264
+ ):
268
265
  """Clear all constraints from the selected bones
269
266
 
270
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
271
- :type execution_context: typing.Optional[typing.Union[int, str]]
272
- :type undo: typing.Optional[bool]
267
+ :type override_context: typing.Union[dict, bpy.types.Context]
268
+ :type execution_context: typing.Union[str, int]
269
+ :type undo: bool
273
270
  """
274
271
 
275
272
  ...
276
273
 
277
- def constraints_copy(override_context=None, execution_context=None, undo=None):
274
+ def constraints_copy(
275
+ override_context: typing.Union[dict, bpy.types.Context] = None,
276
+ execution_context: typing.Union[str, int] = None,
277
+ undo: bool = None,
278
+ ):
278
279
  """Copy constraints to other selected bones
279
280
 
280
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
281
- :type execution_context: typing.Optional[typing.Union[int, str]]
282
- :type undo: typing.Optional[bool]
281
+ :type override_context: typing.Union[dict, bpy.types.Context]
282
+ :type execution_context: typing.Union[str, int]
283
+ :type undo: bool
283
284
  """
284
285
 
285
286
  ...
286
287
 
287
- def copy(override_context=None, execution_context=None, undo=None):
288
+ def copy(
289
+ override_context: typing.Union[dict, bpy.types.Context] = None,
290
+ execution_context: typing.Union[str, int] = None,
291
+ undo: bool = None,
292
+ ):
288
293
  """Copy the current pose of the selected bones to the internal clipboard
289
294
 
290
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
291
- :type execution_context: typing.Optional[typing.Union[int, str]]
292
- :type undo: typing.Optional[bool]
295
+ :type override_context: typing.Union[dict, bpy.types.Context]
296
+ :type execution_context: typing.Union[str, int]
297
+ :type undo: bool
293
298
  """
294
299
 
295
300
  ...
296
301
 
297
302
  def flip_names(
298
- override_context=None,
299
- execution_context=None,
300
- undo=None,
301
- *,
302
- do_strip_numbers: typing.Optional[typing.Union[bool, typing.Any]] = False,
303
+ override_context: typing.Union[dict, bpy.types.Context] = None,
304
+ execution_context: typing.Union[str, int] = None,
305
+ undo: bool = None,
306
+ do_strip_numbers: typing.Union[bool, typing.Any] = False,
303
307
  ):
304
308
  """Flips (and corrects) the axis suffixes of the names of selected bones
305
309
 
306
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
307
- :type execution_context: typing.Optional[typing.Union[int, str]]
308
- :type undo: typing.Optional[bool]
310
+ :type override_context: typing.Union[dict, bpy.types.Context]
311
+ :type execution_context: typing.Union[str, int]
312
+ :type undo: bool
309
313
  :param do_strip_numbers: Strip Numbers, Try to remove right-most dot-number from flipped names.Warning: May result in incoherent naming in some cases
310
- :type do_strip_numbers: typing.Optional[typing.Union[bool, typing.Any]]
314
+ :type do_strip_numbers: typing.Union[bool, typing.Any]
311
315
  """
312
316
 
313
317
  ...
314
318
 
315
319
  def hide(
316
- override_context=None,
317
- execution_context=None,
318
- undo=None,
319
- *,
320
- unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
320
+ override_context: typing.Union[dict, bpy.types.Context] = None,
321
+ execution_context: typing.Union[str, int] = None,
322
+ undo: bool = None,
323
+ unselected: typing.Union[bool, typing.Any] = False,
321
324
  ):
322
325
  """Tag selected bones to not be visible in Pose Mode
323
326
 
324
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
325
- :type execution_context: typing.Optional[typing.Union[int, str]]
326
- :type undo: typing.Optional[bool]
327
+ :type override_context: typing.Union[dict, bpy.types.Context]
328
+ :type execution_context: typing.Union[str, int]
329
+ :type undo: bool
327
330
  :param unselected: Unselected
328
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
331
+ :type unselected: typing.Union[bool, typing.Any]
329
332
  """
330
333
 
331
334
  ...
332
335
 
333
336
  def ik_add(
334
- override_context=None,
335
- execution_context=None,
336
- undo=None,
337
- *,
338
- with_targets: typing.Optional[typing.Union[bool, typing.Any]] = True,
337
+ override_context: typing.Union[dict, bpy.types.Context] = None,
338
+ execution_context: typing.Union[str, int] = None,
339
+ undo: bool = None,
340
+ with_targets: typing.Union[bool, typing.Any] = True,
339
341
  ):
340
342
  """Add IK Constraint to the active Bone
341
343
 
342
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
343
- :type execution_context: typing.Optional[typing.Union[int, str]]
344
- :type undo: typing.Optional[bool]
344
+ :type override_context: typing.Union[dict, bpy.types.Context]
345
+ :type execution_context: typing.Union[str, int]
346
+ :type undo: bool
345
347
  :param with_targets: With Targets, Assign IK Constraint with targets derived from the select bones/objects
346
- :type with_targets: typing.Optional[typing.Union[bool, typing.Any]]
348
+ :type with_targets: typing.Union[bool, typing.Any]
347
349
  """
348
350
 
349
351
  ...
350
352
 
351
- def ik_clear(override_context=None, execution_context=None, undo=None):
353
+ def ik_clear(
354
+ override_context: typing.Union[dict, bpy.types.Context] = None,
355
+ execution_context: typing.Union[str, int] = None,
356
+ undo: bool = None,
357
+ ):
352
358
  """Remove all IK Constraints from selected bones
353
359
 
354
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
355
- :type execution_context: typing.Optional[typing.Union[int, str]]
356
- :type undo: typing.Optional[bool]
360
+ :type override_context: typing.Union[dict, bpy.types.Context]
361
+ :type execution_context: typing.Union[str, int]
362
+ :type undo: bool
357
363
  """
358
364
 
359
365
  ...
360
366
 
361
- def loc_clear(override_context=None, execution_context=None, undo=None):
367
+ def loc_clear(
368
+ override_context: typing.Union[dict, bpy.types.Context] = None,
369
+ execution_context: typing.Union[str, int] = None,
370
+ undo: bool = None,
371
+ ):
362
372
  """Reset locations of selected bones to their default values
363
373
 
364
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
365
- :type execution_context: typing.Optional[typing.Union[int, str]]
366
- :type undo: typing.Optional[bool]
374
+ :type override_context: typing.Union[dict, bpy.types.Context]
375
+ :type execution_context: typing.Union[str, int]
376
+ :type undo: bool
367
377
  """
368
378
 
369
379
  ...
370
380
 
371
381
  def paste(
372
- override_context=None,
373
- execution_context=None,
374
- undo=None,
375
- *,
376
- flipped: typing.Optional[typing.Union[bool, typing.Any]] = False,
377
- selected_mask: typing.Optional[typing.Union[bool, typing.Any]] = False,
382
+ override_context: typing.Union[dict, bpy.types.Context] = None,
383
+ execution_context: typing.Union[str, int] = None,
384
+ undo: bool = None,
385
+ flipped: typing.Union[bool, typing.Any] = False,
386
+ selected_mask: typing.Union[bool, typing.Any] = False,
378
387
  ):
379
388
  """Paste the stored pose on to the current pose
380
389
 
381
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
382
- :type execution_context: typing.Optional[typing.Union[int, str]]
383
- :type undo: typing.Optional[bool]
390
+ :type override_context: typing.Union[dict, bpy.types.Context]
391
+ :type execution_context: typing.Union[str, int]
392
+ :type undo: bool
384
393
  :param flipped: Flipped on X-Axis, Paste the stored pose flipped on to current pose
385
- :type flipped: typing.Optional[typing.Union[bool, typing.Any]]
394
+ :type flipped: typing.Union[bool, typing.Any]
386
395
  :param selected_mask: On Selected Only, Only paste the stored pose on to selected bones in the current pose
387
- :type selected_mask: typing.Optional[typing.Union[bool, typing.Any]]
396
+ :type selected_mask: typing.Union[bool, typing.Any]
388
397
  """
389
398
 
390
399
  ...
391
400
 
392
401
  def paths_calculate(
393
- override_context=None,
394
- execution_context=None,
395
- undo=None,
396
- *,
397
- display_type: typing.Optional[typing.Any] = "RANGE",
398
- range: typing.Optional[typing.Any] = "SCENE",
399
- bake_location: typing.Optional[typing.Any] = "HEADS",
402
+ override_context: typing.Union[dict, bpy.types.Context] = None,
403
+ execution_context: typing.Union[str, int] = None,
404
+ undo: bool = None,
405
+ display_type: typing.Any = "RANGE",
406
+ range: typing.Any = "SCENE",
407
+ bake_location: typing.Any = "HEADS",
400
408
  ):
401
409
  """Calculate paths for the selected bones
402
410
 
403
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
404
- :type execution_context: typing.Optional[typing.Union[int, str]]
405
- :type undo: typing.Optional[bool]
411
+ :type override_context: typing.Union[dict, bpy.types.Context]
412
+ :type execution_context: typing.Union[str, int]
413
+ :type undo: bool
406
414
  :param display_type: Display type
407
- :type display_type: typing.Optional[typing.Any]
415
+ :type display_type: typing.Any
408
416
  :param range: Computation Range
409
- :type range: typing.Optional[typing.Any]
417
+ :type range: typing.Any
410
418
  :param bake_location: Bake Location, Which point on the bones is used when calculating paths
411
- :type bake_location: typing.Optional[typing.Any]
419
+ :type bake_location: typing.Any
412
420
  """
413
421
 
414
422
  ...
415
423
 
416
424
  def paths_clear(
417
- override_context=None,
418
- execution_context=None,
419
- undo=None,
420
- *,
421
- only_selected: typing.Optional[typing.Union[bool, typing.Any]] = False,
425
+ override_context: typing.Union[dict, bpy.types.Context] = None,
426
+ execution_context: typing.Union[str, int] = None,
427
+ undo: bool = None,
428
+ only_selected: typing.Union[bool, typing.Any] = False,
422
429
  ):
423
430
  """Undocumented, consider contributing.
424
431
 
425
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
426
- :type execution_context: typing.Optional[typing.Union[int, str]]
427
- :type undo: typing.Optional[bool]
432
+ :type override_context: typing.Union[dict, bpy.types.Context]
433
+ :type execution_context: typing.Union[str, int]
434
+ :type undo: bool
428
435
  :param only_selected: Only Selected, Only clear motion paths of selected bones
429
- :type only_selected: typing.Optional[typing.Union[bool, typing.Any]]
436
+ :type only_selected: typing.Union[bool, typing.Any]
430
437
  """
431
438
 
432
439
  ...
433
440
 
434
- def paths_range_update(override_context=None, execution_context=None, undo=None):
441
+ def paths_range_update(
442
+ override_context: typing.Union[dict, bpy.types.Context] = None,
443
+ execution_context: typing.Union[str, int] = None,
444
+ undo: bool = None,
445
+ ):
435
446
  """Update frame range for motion paths from the Scene's current frame range
436
447
 
437
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
438
- :type execution_context: typing.Optional[typing.Union[int, str]]
439
- :type undo: typing.Optional[bool]
448
+ :type override_context: typing.Union[dict, bpy.types.Context]
449
+ :type execution_context: typing.Union[str, int]
450
+ :type undo: bool
440
451
  """
441
452
 
442
453
  ...
443
454
 
444
- def paths_update(override_context=None, execution_context=None, undo=None):
455
+ def paths_update(
456
+ override_context: typing.Union[dict, bpy.types.Context] = None,
457
+ execution_context: typing.Union[str, int] = None,
458
+ undo: bool = None,
459
+ ):
445
460
  """Recalculate paths for bones that already have them
446
461
 
447
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
448
- :type execution_context: typing.Optional[typing.Union[int, str]]
449
- :type undo: typing.Optional[bool]
462
+ :type override_context: typing.Union[dict, bpy.types.Context]
463
+ :type execution_context: typing.Union[str, int]
464
+ :type undo: bool
450
465
  """
451
466
 
452
467
  ...
453
468
 
454
469
  def propagate(
455
- override_context=None,
456
- execution_context=None,
457
- undo=None,
458
- *,
459
- mode: typing.Optional[typing.Any] = "NEXT_KEY",
460
- end_frame: typing.Optional[typing.Any] = 250.0,
470
+ override_context: typing.Union[dict, bpy.types.Context] = None,
471
+ execution_context: typing.Union[str, int] = None,
472
+ undo: bool = None,
473
+ mode: typing.Any = "NEXT_KEY",
474
+ end_frame: typing.Any = 250.0,
461
475
  ):
462
476
  """Copy selected aspects of the current pose to subsequent poses already keyframed
463
477
 
464
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
465
- :type execution_context: typing.Optional[typing.Union[int, str]]
466
- :type undo: typing.Optional[bool]
478
+ :type override_context: typing.Union[dict, bpy.types.Context]
479
+ :type execution_context: typing.Union[str, int]
480
+ :type undo: bool
467
481
  :param mode: Terminate Mode, Method used to determine when to stop propagating pose to keyframes
468
482
 
469
483
  NEXT_KEY
@@ -483,35 +497,34 @@ def propagate(
483
497
 
484
498
  SELECTED_MARKERS
485
499
  On Selected Markers -- Propagate pose to all keyframes occurring on frames with Scene Markers after the current frame.
486
- :type mode: typing.Optional[typing.Any]
500
+ :type mode: typing.Any
487
501
  :param end_frame: End Frame, Frame to stop propagating frames to (for 'Before Frame' mode)
488
- :type end_frame: typing.Optional[typing.Any]
502
+ :type end_frame: typing.Any
489
503
  """
490
504
 
491
505
  ...
492
506
 
493
507
  def push(
494
- override_context=None,
495
- execution_context=None,
496
- undo=None,
497
- *,
498
- factor: typing.Optional[typing.Any] = 0.5,
499
- prev_frame: typing.Optional[typing.Any] = 0,
500
- next_frame: typing.Optional[typing.Any] = 0,
501
- channels: typing.Optional[typing.Any] = "ALL",
502
- axis_lock: typing.Optional[typing.Any] = "FREE",
508
+ override_context: typing.Union[dict, bpy.types.Context] = None,
509
+ execution_context: typing.Union[str, int] = None,
510
+ undo: bool = None,
511
+ factor: typing.Any = 0.5,
512
+ prev_frame: typing.Any = 0,
513
+ next_frame: typing.Any = 0,
514
+ channels: typing.Any = "ALL",
515
+ axis_lock: typing.Any = "FREE",
503
516
  ):
504
517
  """Exaggerate the current pose in regards to the breakdown pose
505
518
 
506
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
507
- :type execution_context: typing.Optional[typing.Union[int, str]]
508
- :type undo: typing.Optional[bool]
519
+ :type override_context: typing.Union[dict, bpy.types.Context]
520
+ :type execution_context: typing.Union[str, int]
521
+ :type undo: bool
509
522
  :param factor: Factor, Weighting factor for which keyframe is favored more
510
- :type factor: typing.Optional[typing.Any]
523
+ :type factor: typing.Any
511
524
  :param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
512
- :type prev_frame: typing.Optional[typing.Any]
525
+ :type prev_frame: typing.Any
513
526
  :param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
514
- :type next_frame: typing.Optional[typing.Any]
527
+ :type next_frame: typing.Any
515
528
  :param channels: Channels, Set of properties that are affected
516
529
 
517
530
  ALL
@@ -531,7 +544,7 @@ def push(
531
544
 
532
545
  CUSTOM
533
546
  Custom Properties -- Custom properties.
534
- :type channels: typing.Optional[typing.Any]
547
+ :type channels: typing.Any
535
548
  :param axis_lock: Axis Lock, Transform axis to restrict effects to
536
549
 
537
550
  FREE
@@ -545,43 +558,46 @@ def push(
545
558
 
546
559
  Z
547
560
  Z -- Only Z-axis transforms are affected.
548
- :type axis_lock: typing.Optional[typing.Any]
561
+ :type axis_lock: typing.Any
549
562
  """
550
563
 
551
564
  ...
552
565
 
553
- def quaternions_flip(override_context=None, execution_context=None, undo=None):
566
+ def quaternions_flip(
567
+ override_context: typing.Union[dict, bpy.types.Context] = None,
568
+ execution_context: typing.Union[str, int] = None,
569
+ undo: bool = None,
570
+ ):
554
571
  """Flip quaternion values to achieve desired rotations, while maintaining the same orientations
555
572
 
556
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
557
- :type execution_context: typing.Optional[typing.Union[int, str]]
558
- :type undo: typing.Optional[bool]
573
+ :type override_context: typing.Union[dict, bpy.types.Context]
574
+ :type execution_context: typing.Union[str, int]
575
+ :type undo: bool
559
576
  """
560
577
 
561
578
  ...
562
579
 
563
580
  def relax(
564
- override_context=None,
565
- execution_context=None,
566
- undo=None,
567
- *,
568
- factor: typing.Optional[typing.Any] = 0.5,
569
- prev_frame: typing.Optional[typing.Any] = 0,
570
- next_frame: typing.Optional[typing.Any] = 0,
571
- channels: typing.Optional[typing.Any] = "ALL",
572
- axis_lock: typing.Optional[typing.Any] = "FREE",
581
+ override_context: typing.Union[dict, bpy.types.Context] = None,
582
+ execution_context: typing.Union[str, int] = None,
583
+ undo: bool = None,
584
+ factor: typing.Any = 0.5,
585
+ prev_frame: typing.Any = 0,
586
+ next_frame: typing.Any = 0,
587
+ channels: typing.Any = "ALL",
588
+ axis_lock: typing.Any = "FREE",
573
589
  ):
574
590
  """Make the current pose more similar to its breakdown pose
575
591
 
576
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
577
- :type execution_context: typing.Optional[typing.Union[int, str]]
578
- :type undo: typing.Optional[bool]
592
+ :type override_context: typing.Union[dict, bpy.types.Context]
593
+ :type execution_context: typing.Union[str, int]
594
+ :type undo: bool
579
595
  :param factor: Factor, Weighting factor for which keyframe is favored more
580
- :type factor: typing.Optional[typing.Any]
596
+ :type factor: typing.Any
581
597
  :param prev_frame: Previous Keyframe, Frame number of keyframe immediately before the current frame
582
- :type prev_frame: typing.Optional[typing.Any]
598
+ :type prev_frame: typing.Any
583
599
  :param next_frame: Next Keyframe, Frame number of keyframe immediately after the current frame
584
- :type next_frame: typing.Optional[typing.Any]
600
+ :type next_frame: typing.Any
585
601
  :param channels: Channels, Set of properties that are affected
586
602
 
587
603
  ALL
@@ -601,7 +617,7 @@ def relax(
601
617
 
602
618
  CUSTOM
603
619
  Custom Properties -- Custom properties.
604
- :type channels: typing.Optional[typing.Any]
620
+ :type channels: typing.Any
605
621
  :param axis_lock: Axis Lock, Transform axis to restrict effects to
606
622
 
607
623
  FREE
@@ -615,79 +631,84 @@ def relax(
615
631
 
616
632
  Z
617
633
  Z -- Only Z-axis transforms are affected.
618
- :type axis_lock: typing.Optional[typing.Any]
634
+ :type axis_lock: typing.Any
619
635
  """
620
636
 
621
637
  ...
622
638
 
623
639
  def reveal(
624
- override_context=None,
625
- execution_context=None,
626
- undo=None,
627
- *,
628
- select: typing.Optional[typing.Union[bool, typing.Any]] = True,
640
+ override_context: typing.Union[dict, bpy.types.Context] = None,
641
+ execution_context: typing.Union[str, int] = None,
642
+ undo: bool = None,
643
+ select: typing.Union[bool, typing.Any] = True,
629
644
  ):
630
645
  """Reveal all bones hidden in Pose Mode
631
646
 
632
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
633
- :type execution_context: typing.Optional[typing.Union[int, str]]
634
- :type undo: typing.Optional[bool]
647
+ :type override_context: typing.Union[dict, bpy.types.Context]
648
+ :type execution_context: typing.Union[str, int]
649
+ :type undo: bool
635
650
  :param select: Select
636
- :type select: typing.Optional[typing.Union[bool, typing.Any]]
651
+ :type select: typing.Union[bool, typing.Any]
637
652
  """
638
653
 
639
654
  ...
640
655
 
641
- def rot_clear(override_context=None, execution_context=None, undo=None):
656
+ def rot_clear(
657
+ override_context: typing.Union[dict, bpy.types.Context] = None,
658
+ execution_context: typing.Union[str, int] = None,
659
+ undo: bool = None,
660
+ ):
642
661
  """Reset rotations of selected bones to their default values
643
662
 
644
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
645
- :type execution_context: typing.Optional[typing.Union[int, str]]
646
- :type undo: typing.Optional[bool]
663
+ :type override_context: typing.Union[dict, bpy.types.Context]
664
+ :type execution_context: typing.Union[str, int]
665
+ :type undo: bool
647
666
  """
648
667
 
649
668
  ...
650
669
 
651
670
  def rotation_mode_set(
652
- override_context=None,
653
- execution_context=None,
654
- undo=None,
655
- *,
656
- type: typing.Optional[typing.Any] = "QUATERNION",
671
+ override_context: typing.Union[dict, bpy.types.Context] = None,
672
+ execution_context: typing.Union[str, int] = None,
673
+ undo: bool = None,
674
+ type: typing.Any = "QUATERNION",
657
675
  ):
658
676
  """Set the rotation representation used by selected bones
659
677
 
660
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
661
- :type execution_context: typing.Optional[typing.Union[int, str]]
662
- :type undo: typing.Optional[bool]
678
+ :type override_context: typing.Union[dict, bpy.types.Context]
679
+ :type execution_context: typing.Union[str, int]
680
+ :type undo: bool
663
681
  :param type: Rotation Mode
664
- :type type: typing.Optional[typing.Any]
682
+ :type type: typing.Any
665
683
  """
666
684
 
667
685
  ...
668
686
 
669
- def scale_clear(override_context=None, execution_context=None, undo=None):
687
+ def scale_clear(
688
+ override_context: typing.Union[dict, bpy.types.Context] = None,
689
+ execution_context: typing.Union[str, int] = None,
690
+ undo: bool = None,
691
+ ):
670
692
  """Reset scaling of selected bones to their default values
671
693
 
672
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
673
- :type execution_context: typing.Optional[typing.Union[int, str]]
674
- :type undo: typing.Optional[bool]
694
+ :type override_context: typing.Union[dict, bpy.types.Context]
695
+ :type execution_context: typing.Union[str, int]
696
+ :type undo: bool
675
697
  """
676
698
 
677
699
  ...
678
700
 
679
701
  def select_all(
680
- override_context=None,
681
- execution_context=None,
682
- undo=None,
683
- *,
684
- action: typing.Optional[typing.Any] = "TOGGLE",
702
+ override_context: typing.Union[dict, bpy.types.Context] = None,
703
+ execution_context: typing.Union[str, int] = None,
704
+ undo: bool = None,
705
+ action: typing.Any = "TOGGLE",
685
706
  ):
686
707
  """Toggle selection status of all bones
687
708
 
688
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
689
- :type execution_context: typing.Optional[typing.Union[int, str]]
690
- :type undo: typing.Optional[bool]
709
+ :type override_context: typing.Union[dict, bpy.types.Context]
710
+ :type execution_context: typing.Union[str, int]
711
+ :type undo: bool
691
712
  :param action: Action, Selection action to execute
692
713
 
693
714
  TOGGLE
@@ -701,36 +722,39 @@ def select_all(
701
722
 
702
723
  INVERT
703
724
  Invert -- Invert selection of all elements.
704
- :type action: typing.Optional[typing.Any]
725
+ :type action: typing.Any
705
726
  """
706
727
 
707
728
  ...
708
729
 
709
- def select_constraint_target(override_context=None, execution_context=None, undo=None):
730
+ def select_constraint_target(
731
+ override_context: typing.Union[dict, bpy.types.Context] = None,
732
+ execution_context: typing.Union[str, int] = None,
733
+ undo: bool = None,
734
+ ):
710
735
  """Select bones used as targets for the currently selected bones
711
736
 
712
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
713
- :type execution_context: typing.Optional[typing.Union[int, str]]
714
- :type undo: typing.Optional[bool]
737
+ :type override_context: typing.Union[dict, bpy.types.Context]
738
+ :type execution_context: typing.Union[str, int]
739
+ :type undo: bool
715
740
  """
716
741
 
717
742
  ...
718
743
 
719
744
  def select_grouped(
720
- override_context=None,
721
- execution_context=None,
722
- undo=None,
723
- *,
724
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
725
- type: typing.Optional[typing.Any] = "COLLECTION",
745
+ override_context: typing.Union[dict, bpy.types.Context] = None,
746
+ execution_context: typing.Union[str, int] = None,
747
+ undo: bool = None,
748
+ extend: typing.Union[bool, typing.Any] = False,
749
+ type: typing.Any = "COLLECTION",
726
750
  ):
727
751
  """Select all visible bones grouped by similar properties
728
752
 
729
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
730
- :type execution_context: typing.Optional[typing.Union[int, str]]
731
- :type undo: typing.Optional[bool]
753
+ :type override_context: typing.Union[dict, bpy.types.Context]
754
+ :type execution_context: typing.Union[str, int]
755
+ :type undo: bool
732
756
  :param extend: Extend, Extend selection instead of deselecting everything first
733
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
757
+ :type extend: typing.Union[bool, typing.Any]
734
758
  :param type: Type
735
759
 
736
760
  COLLECTION
@@ -741,125 +765,137 @@ def select_grouped(
741
765
 
742
766
  KEYINGSET
743
767
  Keying Set -- All bones affected by active Keying Set.
744
- :type type: typing.Optional[typing.Any]
768
+ :type type: typing.Any
745
769
  """
746
770
 
747
771
  ...
748
772
 
749
773
  def select_hierarchy(
750
- override_context=None,
751
- execution_context=None,
752
- undo=None,
753
- *,
754
- direction: typing.Optional[typing.Any] = "PARENT",
755
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
774
+ override_context: typing.Union[dict, bpy.types.Context] = None,
775
+ execution_context: typing.Union[str, int] = None,
776
+ undo: bool = None,
777
+ direction: typing.Any = "PARENT",
778
+ extend: typing.Union[bool, typing.Any] = False,
756
779
  ):
757
780
  """Select immediate parent/children of selected bones
758
781
 
759
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
760
- :type execution_context: typing.Optional[typing.Union[int, str]]
761
- :type undo: typing.Optional[bool]
782
+ :type override_context: typing.Union[dict, bpy.types.Context]
783
+ :type execution_context: typing.Union[str, int]
784
+ :type undo: bool
762
785
  :param direction: Direction
763
- :type direction: typing.Optional[typing.Any]
786
+ :type direction: typing.Any
764
787
  :param extend: Extend, Extend the selection
765
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
788
+ :type extend: typing.Union[bool, typing.Any]
766
789
  """
767
790
 
768
791
  ...
769
792
 
770
- def select_linked(override_context=None, execution_context=None, undo=None):
793
+ def select_linked(
794
+ override_context: typing.Union[dict, bpy.types.Context] = None,
795
+ execution_context: typing.Union[str, int] = None,
796
+ undo: bool = None,
797
+ ):
771
798
  """Select all bones linked by parent/child connections to the current selection
772
799
 
773
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
774
- :type execution_context: typing.Optional[typing.Union[int, str]]
775
- :type undo: typing.Optional[bool]
800
+ :type override_context: typing.Union[dict, bpy.types.Context]
801
+ :type execution_context: typing.Union[str, int]
802
+ :type undo: bool
776
803
  """
777
804
 
778
805
  ...
779
806
 
780
807
  def select_linked_pick(
781
- override_context=None,
782
- execution_context=None,
783
- undo=None,
784
- *,
785
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
808
+ override_context: typing.Union[dict, bpy.types.Context] = None,
809
+ execution_context: typing.Union[str, int] = None,
810
+ undo: bool = None,
811
+ extend: typing.Union[bool, typing.Any] = False,
786
812
  ):
787
813
  """Select bones linked by parent/child connections under the mouse cursor
788
814
 
789
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
790
- :type execution_context: typing.Optional[typing.Union[int, str]]
791
- :type undo: typing.Optional[bool]
815
+ :type override_context: typing.Union[dict, bpy.types.Context]
816
+ :type execution_context: typing.Union[str, int]
817
+ :type undo: bool
792
818
  :param extend: Extend, Extend selection instead of deselecting everything first
793
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
819
+ :type extend: typing.Union[bool, typing.Any]
794
820
  """
795
821
 
796
822
  ...
797
823
 
798
824
  def select_mirror(
799
- override_context=None,
800
- execution_context=None,
801
- undo=None,
802
- *,
803
- only_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
804
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
825
+ override_context: typing.Union[dict, bpy.types.Context] = None,
826
+ execution_context: typing.Union[str, int] = None,
827
+ undo: bool = None,
828
+ only_active: typing.Union[bool, typing.Any] = False,
829
+ extend: typing.Union[bool, typing.Any] = False,
805
830
  ):
806
831
  """Mirror the bone selection
807
832
 
808
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
809
- :type execution_context: typing.Optional[typing.Union[int, str]]
810
- :type undo: typing.Optional[bool]
833
+ :type override_context: typing.Union[dict, bpy.types.Context]
834
+ :type execution_context: typing.Union[str, int]
835
+ :type undo: bool
811
836
  :param only_active: Active Only, Only operate on the active bone
812
- :type only_active: typing.Optional[typing.Union[bool, typing.Any]]
837
+ :type only_active: typing.Union[bool, typing.Any]
813
838
  :param extend: Extend, Extend the selection
814
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
839
+ :type extend: typing.Union[bool, typing.Any]
815
840
  """
816
841
 
817
842
  ...
818
843
 
819
- def select_parent(override_context=None, execution_context=None, undo=None):
844
+ def select_parent(
845
+ override_context: typing.Union[dict, bpy.types.Context] = None,
846
+ execution_context: typing.Union[str, int] = None,
847
+ undo: bool = None,
848
+ ):
820
849
  """Select bones that are parents of the currently selected bones
821
850
 
822
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
823
- :type execution_context: typing.Optional[typing.Union[int, str]]
824
- :type undo: typing.Optional[bool]
851
+ :type override_context: typing.Union[dict, bpy.types.Context]
852
+ :type execution_context: typing.Union[str, int]
853
+ :type undo: bool
825
854
  """
826
855
 
827
856
  ...
828
857
 
829
- def transforms_clear(override_context=None, execution_context=None, undo=None):
858
+ def transforms_clear(
859
+ override_context: typing.Union[dict, bpy.types.Context] = None,
860
+ execution_context: typing.Union[str, int] = None,
861
+ undo: bool = None,
862
+ ):
830
863
  """Reset location, rotation, and scaling of selected bones to their default values
831
864
 
832
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
833
- :type execution_context: typing.Optional[typing.Union[int, str]]
834
- :type undo: typing.Optional[bool]
865
+ :type override_context: typing.Union[dict, bpy.types.Context]
866
+ :type execution_context: typing.Union[str, int]
867
+ :type undo: bool
835
868
  """
836
869
 
837
870
  ...
838
871
 
839
872
  def user_transforms_clear(
840
- override_context=None,
841
- execution_context=None,
842
- undo=None,
843
- *,
844
- only_selected: typing.Optional[typing.Union[bool, typing.Any]] = True,
873
+ override_context: typing.Union[dict, bpy.types.Context] = None,
874
+ execution_context: typing.Union[str, int] = None,
875
+ undo: bool = None,
876
+ only_selected: typing.Union[bool, typing.Any] = True,
845
877
  ):
846
878
  """Reset pose bone transforms to keyframed state
847
879
 
848
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
849
- :type execution_context: typing.Optional[typing.Union[int, str]]
850
- :type undo: typing.Optional[bool]
880
+ :type override_context: typing.Union[dict, bpy.types.Context]
881
+ :type execution_context: typing.Union[str, int]
882
+ :type undo: bool
851
883
  :param only_selected: Only Selected, Only visible/selected bones
852
- :type only_selected: typing.Optional[typing.Union[bool, typing.Any]]
884
+ :type only_selected: typing.Union[bool, typing.Any]
853
885
  """
854
886
 
855
887
  ...
856
888
 
857
- def visual_transform_apply(override_context=None, execution_context=None, undo=None):
889
+ def visual_transform_apply(
890
+ override_context: typing.Union[dict, bpy.types.Context] = None,
891
+ execution_context: typing.Union[str, int] = None,
892
+ undo: bool = None,
893
+ ):
858
894
  """Apply final constrained position of pose bones to their transform
859
895
 
860
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
861
- :type execution_context: typing.Optional[typing.Union[int, str]]
862
- :type undo: typing.Optional[bool]
896
+ :type override_context: typing.Union[dict, bpy.types.Context]
897
+ :type execution_context: typing.Union[str, int]
898
+ :type undo: bool
863
899
  """
864
900
 
865
901
  ...