fake-bpy-module 20240320__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 +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86358 -87091
  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-20240320.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-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -4,37 +4,32 @@ import bpy.types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  def add_target(
7
- override_context: typing.Optional[
8
- typing.Union["bpy.types.Context", typing.Dict]
9
- ] = None,
10
- execution_context: typing.Optional[typing.Union[int, str]] = None,
11
- undo: typing.Optional[bool] = None,
7
+ override_context: typing.Union[dict, bpy.types.Context] = None,
8
+ execution_context: typing.Union[str, int] = None,
9
+ undo: bool = None,
12
10
  ):
13
11
  """Add a target to the constraint
14
12
 
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]
13
+ :type override_context: typing.Union[dict, bpy.types.Context]
14
+ :type execution_context: typing.Union[str, int]
15
+ :type undo: bool
18
16
  """
19
17
 
20
18
  ...
21
19
 
22
20
  def apply(
23
- override_context: typing.Optional[
24
- typing.Union["bpy.types.Context", typing.Dict]
25
- ] = None,
26
- execution_context: typing.Optional[typing.Union[int, str]] = None,
27
- undo: typing.Optional[bool] = None,
28
- *,
21
+ override_context: typing.Union[dict, bpy.types.Context] = None,
22
+ execution_context: typing.Union[str, int] = None,
23
+ undo: bool = None,
29
24
  constraint: typing.Union[str, typing.Any] = "",
30
- owner: typing.Optional[typing.Any] = "OBJECT",
31
- report: typing.Optional[typing.Union[bool, typing.Any]] = False,
25
+ owner: typing.Any = "OBJECT",
26
+ report: typing.Union[bool, typing.Any] = False,
32
27
  ):
33
28
  """Apply constraint and remove from the stack
34
29
 
35
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
36
- :type execution_context: typing.Optional[typing.Union[int, str]]
37
- :type undo: typing.Optional[bool]
30
+ :type override_context: typing.Union[dict, bpy.types.Context]
31
+ :type execution_context: typing.Union[str, int]
32
+ :type undo: bool
38
33
  :param constraint: Constraint, Name of the constraint to edit
39
34
  :type constraint: typing.Union[str, typing.Any]
40
35
  :param owner: Owner, The owner of this constraint
@@ -44,28 +39,25 @@ def apply(
44
39
 
45
40
  BONE
46
41
  Bone -- Edit a constraint on the active bone.
47
- :type owner: typing.Optional[typing.Any]
42
+ :type owner: typing.Any
48
43
  :param report: Report, Create a notification after the operation
49
- :type report: typing.Optional[typing.Union[bool, typing.Any]]
44
+ :type report: typing.Union[bool, typing.Any]
50
45
  """
51
46
 
52
47
  ...
53
48
 
54
49
  def childof_clear_inverse(
55
- override_context: typing.Optional[
56
- typing.Union["bpy.types.Context", typing.Dict]
57
- ] = None,
58
- execution_context: typing.Optional[typing.Union[int, str]] = None,
59
- undo: typing.Optional[bool] = None,
60
- *,
50
+ override_context: typing.Union[dict, bpy.types.Context] = None,
51
+ execution_context: typing.Union[str, int] = None,
52
+ undo: bool = None,
61
53
  constraint: typing.Union[str, typing.Any] = "",
62
- owner: typing.Optional[typing.Any] = "OBJECT",
54
+ owner: typing.Any = "OBJECT",
63
55
  ):
64
56
  """Clear inverse correction for Child Of constraint
65
57
 
66
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
67
- :type execution_context: typing.Optional[typing.Union[int, str]]
68
- :type undo: typing.Optional[bool]
58
+ :type override_context: typing.Union[dict, bpy.types.Context]
59
+ :type execution_context: typing.Union[str, int]
60
+ :type undo: bool
69
61
  :param constraint: Constraint, Name of the constraint to edit
70
62
  :type constraint: typing.Union[str, typing.Any]
71
63
  :param owner: Owner, The owner of this constraint
@@ -75,26 +67,23 @@ def childof_clear_inverse(
75
67
 
76
68
  BONE
77
69
  Bone -- Edit a constraint on the active bone.
78
- :type owner: typing.Optional[typing.Any]
70
+ :type owner: typing.Any
79
71
  """
80
72
 
81
73
  ...
82
74
 
83
75
  def childof_set_inverse(
84
- override_context: typing.Optional[
85
- typing.Union["bpy.types.Context", typing.Dict]
86
- ] = None,
87
- execution_context: typing.Optional[typing.Union[int, str]] = None,
88
- undo: typing.Optional[bool] = None,
89
- *,
76
+ override_context: typing.Union[dict, bpy.types.Context] = None,
77
+ execution_context: typing.Union[str, int] = None,
78
+ undo: bool = None,
90
79
  constraint: typing.Union[str, typing.Any] = "",
91
- owner: typing.Optional[typing.Any] = "OBJECT",
80
+ owner: typing.Any = "OBJECT",
92
81
  ):
93
82
  """Set inverse correction for Child Of constraint
94
83
 
95
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
96
- :type execution_context: typing.Optional[typing.Union[int, str]]
97
- :type undo: typing.Optional[bool]
84
+ :type override_context: typing.Union[dict, bpy.types.Context]
85
+ :type execution_context: typing.Union[str, int]
86
+ :type undo: bool
98
87
  :param constraint: Constraint, Name of the constraint to edit
99
88
  :type constraint: typing.Union[str, typing.Any]
100
89
  :param owner: Owner, The owner of this constraint
@@ -104,27 +93,24 @@ def childof_set_inverse(
104
93
 
105
94
  BONE
106
95
  Bone -- Edit a constraint on the active bone.
107
- :type owner: typing.Optional[typing.Any]
96
+ :type owner: typing.Any
108
97
  """
109
98
 
110
99
  ...
111
100
 
112
101
  def copy(
113
- override_context: typing.Optional[
114
- typing.Union["bpy.types.Context", typing.Dict]
115
- ] = None,
116
- execution_context: typing.Optional[typing.Union[int, str]] = None,
117
- undo: typing.Optional[bool] = None,
118
- *,
102
+ override_context: typing.Union[dict, bpy.types.Context] = None,
103
+ execution_context: typing.Union[str, int] = None,
104
+ undo: bool = None,
119
105
  constraint: typing.Union[str, typing.Any] = "",
120
- owner: typing.Optional[typing.Any] = "OBJECT",
121
- report: typing.Optional[typing.Union[bool, typing.Any]] = False,
106
+ owner: typing.Any = "OBJECT",
107
+ report: typing.Union[bool, typing.Any] = False,
122
108
  ):
123
109
  """Duplicate constraint at the same position in the stack
124
110
 
125
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
126
- :type execution_context: typing.Optional[typing.Union[int, str]]
127
- :type undo: typing.Optional[bool]
111
+ :type override_context: typing.Union[dict, bpy.types.Context]
112
+ :type execution_context: typing.Union[str, int]
113
+ :type undo: bool
128
114
  :param constraint: Constraint, Name of the constraint to edit
129
115
  :type constraint: typing.Union[str, typing.Any]
130
116
  :param owner: Owner, The owner of this constraint
@@ -134,28 +120,25 @@ def copy(
134
120
 
135
121
  BONE
136
122
  Bone -- Edit a constraint on the active bone.
137
- :type owner: typing.Optional[typing.Any]
123
+ :type owner: typing.Any
138
124
  :param report: Report, Create a notification after the operation
139
- :type report: typing.Optional[typing.Union[bool, typing.Any]]
125
+ :type report: typing.Union[bool, typing.Any]
140
126
  """
141
127
 
142
128
  ...
143
129
 
144
130
  def copy_to_selected(
145
- override_context: typing.Optional[
146
- typing.Union["bpy.types.Context", typing.Dict]
147
- ] = None,
148
- execution_context: typing.Optional[typing.Union[int, str]] = None,
149
- undo: typing.Optional[bool] = None,
150
- *,
131
+ override_context: typing.Union[dict, bpy.types.Context] = None,
132
+ execution_context: typing.Union[str, int] = None,
133
+ undo: bool = None,
151
134
  constraint: typing.Union[str, typing.Any] = "",
152
- owner: typing.Optional[typing.Any] = "OBJECT",
135
+ owner: typing.Any = "OBJECT",
153
136
  ):
154
137
  """Copy constraint to other selected objects/bones
155
138
 
156
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
157
- :type execution_context: typing.Optional[typing.Union[int, str]]
158
- :type undo: typing.Optional[bool]
139
+ :type override_context: typing.Union[dict, bpy.types.Context]
140
+ :type execution_context: typing.Union[str, int]
141
+ :type undo: bool
159
142
  :param constraint: Constraint, Name of the constraint to edit
160
143
  :type constraint: typing.Union[str, typing.Any]
161
144
  :param owner: Owner, The owner of this constraint
@@ -165,27 +148,24 @@ def copy_to_selected(
165
148
 
166
149
  BONE
167
150
  Bone -- Edit a constraint on the active bone.
168
- :type owner: typing.Optional[typing.Any]
151
+ :type owner: typing.Any
169
152
  """
170
153
 
171
154
  ...
172
155
 
173
156
  def delete(
174
- override_context: typing.Optional[
175
- typing.Union["bpy.types.Context", typing.Dict]
176
- ] = None,
177
- execution_context: typing.Optional[typing.Union[int, str]] = None,
178
- undo: typing.Optional[bool] = None,
179
- *,
157
+ override_context: typing.Union[dict, bpy.types.Context] = None,
158
+ execution_context: typing.Union[str, int] = None,
159
+ undo: bool = None,
180
160
  constraint: typing.Union[str, typing.Any] = "",
181
- owner: typing.Optional[typing.Any] = "OBJECT",
182
- report: typing.Optional[typing.Union[bool, typing.Any]] = False,
161
+ owner: typing.Any = "OBJECT",
162
+ report: typing.Union[bool, typing.Any] = False,
183
163
  ):
184
164
  """Remove constraint from constraint stack
185
165
 
186
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
187
- :type execution_context: typing.Optional[typing.Union[int, str]]
188
- :type undo: typing.Optional[bool]
166
+ :type override_context: typing.Union[dict, bpy.types.Context]
167
+ :type execution_context: typing.Union[str, int]
168
+ :type undo: bool
189
169
  :param constraint: Constraint, Name of the constraint to edit
190
170
  :type constraint: typing.Union[str, typing.Any]
191
171
  :param owner: Owner, The owner of this constraint
@@ -195,46 +175,41 @@ def delete(
195
175
 
196
176
  BONE
197
177
  Bone -- Edit a constraint on the active bone.
198
- :type owner: typing.Optional[typing.Any]
178
+ :type owner: typing.Any
199
179
  :param report: Report, Create a notification after the operation
200
- :type report: typing.Optional[typing.Union[bool, typing.Any]]
180
+ :type report: typing.Union[bool, typing.Any]
201
181
  """
202
182
 
203
183
  ...
204
184
 
205
185
  def disable_keep_transform(
206
- override_context: typing.Optional[
207
- typing.Union["bpy.types.Context", typing.Dict]
208
- ] = None,
209
- execution_context: typing.Optional[typing.Union[int, str]] = None,
210
- undo: typing.Optional[bool] = None,
186
+ override_context: typing.Union[dict, bpy.types.Context] = None,
187
+ execution_context: typing.Union[str, int] = None,
188
+ undo: bool = None,
211
189
  ):
212
190
  """Set the influence of this constraint to zero while trying to maintain the object's transformation. Other active constraints can still influence the final transformation
213
191
 
214
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
215
- :type execution_context: typing.Optional[typing.Union[int, str]]
216
- :type undo: typing.Optional[bool]
192
+ :type override_context: typing.Union[dict, bpy.types.Context]
193
+ :type execution_context: typing.Union[str, int]
194
+ :type undo: bool
217
195
  """
218
196
 
219
197
  ...
220
198
 
221
199
  def followpath_path_animate(
222
- override_context: typing.Optional[
223
- typing.Union["bpy.types.Context", typing.Dict]
224
- ] = None,
225
- execution_context: typing.Optional[typing.Union[int, str]] = None,
226
- undo: typing.Optional[bool] = None,
227
- *,
200
+ override_context: typing.Union[dict, bpy.types.Context] = None,
201
+ execution_context: typing.Union[str, int] = None,
202
+ undo: bool = None,
228
203
  constraint: typing.Union[str, typing.Any] = "",
229
- owner: typing.Optional[typing.Any] = "OBJECT",
230
- frame_start: typing.Optional[typing.Any] = 1,
231
- length: typing.Optional[typing.Any] = 100,
204
+ owner: typing.Any = "OBJECT",
205
+ frame_start: typing.Any = 1,
206
+ length: typing.Any = 100,
232
207
  ):
233
208
  """Add default animation for path used by constraint if it isn't animated already
234
209
 
235
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
236
- :type execution_context: typing.Optional[typing.Union[int, str]]
237
- :type undo: typing.Optional[bool]
210
+ :type override_context: typing.Union[dict, bpy.types.Context]
211
+ :type execution_context: typing.Union[str, int]
212
+ :type undo: bool
238
213
  :param constraint: Constraint, Name of the constraint to edit
239
214
  :type constraint: typing.Union[str, typing.Any]
240
215
  :param owner: Owner, The owner of this constraint
@@ -244,30 +219,27 @@ def followpath_path_animate(
244
219
 
245
220
  BONE
246
221
  Bone -- Edit a constraint on the active bone.
247
- :type owner: typing.Optional[typing.Any]
222
+ :type owner: typing.Any
248
223
  :param frame_start: Start Frame, First frame of path animation
249
- :type frame_start: typing.Optional[typing.Any]
224
+ :type frame_start: typing.Any
250
225
  :param length: Length, Number of frames that path animation should take
251
- :type length: typing.Optional[typing.Any]
226
+ :type length: typing.Any
252
227
  """
253
228
 
254
229
  ...
255
230
 
256
231
  def limitdistance_reset(
257
- override_context: typing.Optional[
258
- typing.Union["bpy.types.Context", typing.Dict]
259
- ] = None,
260
- execution_context: typing.Optional[typing.Union[int, str]] = None,
261
- undo: typing.Optional[bool] = None,
262
- *,
232
+ override_context: typing.Union[dict, bpy.types.Context] = None,
233
+ execution_context: typing.Union[str, int] = None,
234
+ undo: bool = None,
263
235
  constraint: typing.Union[str, typing.Any] = "",
264
- owner: typing.Optional[typing.Any] = "OBJECT",
236
+ owner: typing.Any = "OBJECT",
265
237
  ):
266
238
  """Reset limiting distance for Limit Distance Constraint
267
239
 
268
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
269
- :type execution_context: typing.Optional[typing.Union[int, str]]
270
- :type undo: typing.Optional[bool]
240
+ :type override_context: typing.Union[dict, bpy.types.Context]
241
+ :type execution_context: typing.Union[str, int]
242
+ :type undo: bool
271
243
  :param constraint: Constraint, Name of the constraint to edit
272
244
  :type constraint: typing.Union[str, typing.Any]
273
245
  :param owner: Owner, The owner of this constraint
@@ -277,26 +249,23 @@ def limitdistance_reset(
277
249
 
278
250
  BONE
279
251
  Bone -- Edit a constraint on the active bone.
280
- :type owner: typing.Optional[typing.Any]
252
+ :type owner: typing.Any
281
253
  """
282
254
 
283
255
  ...
284
256
 
285
257
  def move_down(
286
- override_context: typing.Optional[
287
- typing.Union["bpy.types.Context", typing.Dict]
288
- ] = None,
289
- execution_context: typing.Optional[typing.Union[int, str]] = None,
290
- undo: typing.Optional[bool] = None,
291
- *,
258
+ override_context: typing.Union[dict, bpy.types.Context] = None,
259
+ execution_context: typing.Union[str, int] = None,
260
+ undo: bool = None,
292
261
  constraint: typing.Union[str, typing.Any] = "",
293
- owner: typing.Optional[typing.Any] = "OBJECT",
262
+ owner: typing.Any = "OBJECT",
294
263
  ):
295
264
  """Move constraint down in constraint stack
296
265
 
297
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
298
- :type execution_context: typing.Optional[typing.Union[int, str]]
299
- :type undo: typing.Optional[bool]
266
+ :type override_context: typing.Union[dict, bpy.types.Context]
267
+ :type execution_context: typing.Union[str, int]
268
+ :type undo: bool
300
269
  :param constraint: Constraint, Name of the constraint to edit
301
270
  :type constraint: typing.Union[str, typing.Any]
302
271
  :param owner: Owner, The owner of this constraint
@@ -306,27 +275,24 @@ def move_down(
306
275
 
307
276
  BONE
308
277
  Bone -- Edit a constraint on the active bone.
309
- :type owner: typing.Optional[typing.Any]
278
+ :type owner: typing.Any
310
279
  """
311
280
 
312
281
  ...
313
282
 
314
283
  def move_to_index(
315
- override_context: typing.Optional[
316
- typing.Union["bpy.types.Context", typing.Dict]
317
- ] = None,
318
- execution_context: typing.Optional[typing.Union[int, str]] = None,
319
- undo: typing.Optional[bool] = None,
320
- *,
284
+ override_context: typing.Union[dict, bpy.types.Context] = None,
285
+ execution_context: typing.Union[str, int] = None,
286
+ undo: bool = None,
321
287
  constraint: typing.Union[str, typing.Any] = "",
322
- owner: typing.Optional[typing.Any] = "OBJECT",
323
- index: typing.Optional[typing.Any] = 0,
288
+ owner: typing.Any = "OBJECT",
289
+ index: typing.Any = 0,
324
290
  ):
325
291
  """Change the constraint's position in the list so it evaluates after the set number of others
326
292
 
327
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
328
- :type execution_context: typing.Optional[typing.Union[int, str]]
329
- :type undo: typing.Optional[bool]
293
+ :type override_context: typing.Union[dict, bpy.types.Context]
294
+ :type execution_context: typing.Union[str, int]
295
+ :type undo: bool
330
296
  :param constraint: Constraint, Name of the constraint to edit
331
297
  :type constraint: typing.Union[str, typing.Any]
332
298
  :param owner: Owner, The owner of this constraint
@@ -336,28 +302,25 @@ def move_to_index(
336
302
 
337
303
  BONE
338
304
  Bone -- Edit a constraint on the active bone.
339
- :type owner: typing.Optional[typing.Any]
305
+ :type owner: typing.Any
340
306
  :param index: Index, The index to move the constraint to
341
- :type index: typing.Optional[typing.Any]
307
+ :type index: typing.Any
342
308
  """
343
309
 
344
310
  ...
345
311
 
346
312
  def move_up(
347
- override_context: typing.Optional[
348
- typing.Union["bpy.types.Context", typing.Dict]
349
- ] = None,
350
- execution_context: typing.Optional[typing.Union[int, str]] = None,
351
- undo: typing.Optional[bool] = None,
352
- *,
313
+ override_context: typing.Union[dict, bpy.types.Context] = None,
314
+ execution_context: typing.Union[str, int] = None,
315
+ undo: bool = None,
353
316
  constraint: typing.Union[str, typing.Any] = "",
354
- owner: typing.Optional[typing.Any] = "OBJECT",
317
+ owner: typing.Any = "OBJECT",
355
318
  ):
356
319
  """Move constraint up in constraint stack
357
320
 
358
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
359
- :type execution_context: typing.Optional[typing.Union[int, str]]
360
- :type undo: typing.Optional[bool]
321
+ :type override_context: typing.Union[dict, bpy.types.Context]
322
+ :type execution_context: typing.Union[str, int]
323
+ :type undo: bool
361
324
  :param constraint: Constraint, Name of the constraint to edit
362
325
  :type constraint: typing.Union[str, typing.Any]
363
326
  :param owner: Owner, The owner of this constraint
@@ -367,42 +330,37 @@ def move_up(
367
330
 
368
331
  BONE
369
332
  Bone -- Edit a constraint on the active bone.
370
- :type owner: typing.Optional[typing.Any]
333
+ :type owner: typing.Any
371
334
  """
372
335
 
373
336
  ...
374
337
 
375
338
  def normalize_target_weights(
376
- override_context: typing.Optional[
377
- typing.Union["bpy.types.Context", typing.Dict]
378
- ] = None,
379
- execution_context: typing.Optional[typing.Union[int, str]] = None,
380
- undo: typing.Optional[bool] = None,
339
+ override_context: typing.Union[dict, bpy.types.Context] = None,
340
+ execution_context: typing.Union[str, int] = None,
341
+ undo: bool = None,
381
342
  ):
382
343
  """Normalize weights of all target bones
383
344
 
384
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
385
- :type execution_context: typing.Optional[typing.Union[int, str]]
386
- :type undo: typing.Optional[bool]
345
+ :type override_context: typing.Union[dict, bpy.types.Context]
346
+ :type execution_context: typing.Union[str, int]
347
+ :type undo: bool
387
348
  """
388
349
 
389
350
  ...
390
351
 
391
352
  def objectsolver_clear_inverse(
392
- override_context: typing.Optional[
393
- typing.Union["bpy.types.Context", typing.Dict]
394
- ] = None,
395
- execution_context: typing.Optional[typing.Union[int, str]] = None,
396
- undo: typing.Optional[bool] = None,
397
- *,
353
+ override_context: typing.Union[dict, bpy.types.Context] = None,
354
+ execution_context: typing.Union[str, int] = None,
355
+ undo: bool = None,
398
356
  constraint: typing.Union[str, typing.Any] = "",
399
- owner: typing.Optional[typing.Any] = "OBJECT",
357
+ owner: typing.Any = "OBJECT",
400
358
  ):
401
359
  """Clear inverse correction for Object Solver constraint
402
360
 
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]
361
+ :type override_context: typing.Union[dict, bpy.types.Context]
362
+ :type execution_context: typing.Union[str, int]
363
+ :type undo: bool
406
364
  :param constraint: Constraint, Name of the constraint to edit
407
365
  :type constraint: typing.Union[str, typing.Any]
408
366
  :param owner: Owner, The owner of this constraint
@@ -412,26 +370,23 @@ def objectsolver_clear_inverse(
412
370
 
413
371
  BONE
414
372
  Bone -- Edit a constraint on the active bone.
415
- :type owner: typing.Optional[typing.Any]
373
+ :type owner: typing.Any
416
374
  """
417
375
 
418
376
  ...
419
377
 
420
378
  def objectsolver_set_inverse(
421
- override_context: typing.Optional[
422
- typing.Union["bpy.types.Context", typing.Dict]
423
- ] = None,
424
- execution_context: typing.Optional[typing.Union[int, str]] = None,
425
- undo: typing.Optional[bool] = None,
426
- *,
379
+ override_context: typing.Union[dict, bpy.types.Context] = None,
380
+ execution_context: typing.Union[str, int] = None,
381
+ undo: bool = None,
427
382
  constraint: typing.Union[str, typing.Any] = "",
428
- owner: typing.Optional[typing.Any] = "OBJECT",
383
+ owner: typing.Any = "OBJECT",
429
384
  ):
430
385
  """Set inverse correction for Object Solver constraint
431
386
 
432
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
433
- :type execution_context: typing.Optional[typing.Union[int, str]]
434
- :type undo: typing.Optional[bool]
387
+ :type override_context: typing.Union[dict, bpy.types.Context]
388
+ :type execution_context: typing.Union[str, int]
389
+ :type undo: bool
435
390
  :param constraint: Constraint, Name of the constraint to edit
436
391
  :type constraint: typing.Union[str, typing.Any]
437
392
  :param owner: Owner, The owner of this constraint
@@ -441,46 +396,40 @@ def objectsolver_set_inverse(
441
396
 
442
397
  BONE
443
398
  Bone -- Edit a constraint on the active bone.
444
- :type owner: typing.Optional[typing.Any]
399
+ :type owner: typing.Any
445
400
  """
446
401
 
447
402
  ...
448
403
 
449
404
  def remove_target(
450
- override_context: typing.Optional[
451
- typing.Union["bpy.types.Context", typing.Dict]
452
- ] = None,
453
- execution_context: typing.Optional[typing.Union[int, str]] = None,
454
- undo: typing.Optional[bool] = None,
455
- *,
456
- index: typing.Optional[typing.Any] = 0,
405
+ override_context: typing.Union[dict, bpy.types.Context] = None,
406
+ execution_context: typing.Union[str, int] = None,
407
+ undo: bool = None,
408
+ index: typing.Any = 0,
457
409
  ):
458
410
  """Remove the target from the constraint
459
411
 
460
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
461
- :type execution_context: typing.Optional[typing.Union[int, str]]
462
- :type undo: typing.Optional[bool]
412
+ :type override_context: typing.Union[dict, bpy.types.Context]
413
+ :type execution_context: typing.Union[str, int]
414
+ :type undo: bool
463
415
  :param index: index
464
- :type index: typing.Optional[typing.Any]
416
+ :type index: typing.Any
465
417
  """
466
418
 
467
419
  ...
468
420
 
469
421
  def stretchto_reset(
470
- override_context: typing.Optional[
471
- typing.Union["bpy.types.Context", typing.Dict]
472
- ] = None,
473
- execution_context: typing.Optional[typing.Union[int, str]] = None,
474
- undo: typing.Optional[bool] = None,
475
- *,
422
+ override_context: typing.Union[dict, bpy.types.Context] = None,
423
+ execution_context: typing.Union[str, int] = None,
424
+ undo: bool = None,
476
425
  constraint: typing.Union[str, typing.Any] = "",
477
- owner: typing.Optional[typing.Any] = "OBJECT",
426
+ owner: typing.Any = "OBJECT",
478
427
  ):
479
428
  """Reset original length of bone for Stretch To Constraint
480
429
 
481
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
482
- :type execution_context: typing.Optional[typing.Union[int, str]]
483
- :type undo: typing.Optional[bool]
430
+ :type override_context: typing.Union[dict, bpy.types.Context]
431
+ :type execution_context: typing.Union[str, int]
432
+ :type undo: bool
484
433
  :param constraint: Constraint, Name of the constraint to edit
485
434
  :type constraint: typing.Union[str, typing.Any]
486
435
  :param owner: Owner, The owner of this constraint
@@ -490,7 +439,7 @@ def stretchto_reset(
490
439
 
491
440
  BONE
492
441
  Bone -- Edit a constraint on the active bone.
493
- :type owner: typing.Optional[typing.Any]
442
+ :type owner: typing.Any
494
443
  """
495
444
 
496
445
  ...