fake-bpy-module 20240321__py3-none-any.whl → 20240324__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 +646 -823
  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 +86446 -87424
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240324.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240321.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240321.dist-info → fake_bpy_module-20240324.dist-info}/top_level.txt +0 -0
bpy/ops/mask/__init__.pyi CHANGED
@@ -5,292 +5,251 @@ import bpy.types
5
5
  GenericType = typing.TypeVar("GenericType")
6
6
 
7
7
  def add_feather_vertex(
8
- override_context: typing.Optional[
9
- typing.Union["bpy.types.Context", typing.Dict]
10
- ] = None,
11
- execution_context: typing.Optional[typing.Union[int, str]] = None,
12
- undo: typing.Optional[bool] = None,
13
- *,
14
- location: typing.Optional[typing.Any] = (0.0, 0.0),
8
+ override_context: typing.Union[dict, bpy.types.Context] = None,
9
+ execution_context: typing.Union[str, int] = None,
10
+ undo: bool = None,
11
+ location: typing.Any = (0.0, 0.0),
15
12
  ):
16
13
  """Add vertex to feather
17
14
 
18
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
19
- :type execution_context: typing.Optional[typing.Union[int, str]]
20
- :type undo: typing.Optional[bool]
15
+ :type override_context: typing.Union[dict, bpy.types.Context]
16
+ :type execution_context: typing.Union[str, int]
17
+ :type undo: bool
21
18
  :param location: Location, Location of vertex in normalized space
22
- :type location: typing.Optional[typing.Any]
19
+ :type location: typing.Any
23
20
  """
24
21
 
25
22
  ...
26
23
 
27
24
  def add_feather_vertex_slide(
28
- override_context: typing.Optional[
29
- typing.Union["bpy.types.Context", typing.Dict]
30
- ] = None,
31
- execution_context: typing.Optional[typing.Union[int, str]] = None,
32
- undo: typing.Optional[bool] = None,
33
- *,
34
- MASK_OT_add_feather_vertex: typing.Optional["add_feather_vertex"] = None,
35
- MASK_OT_slide_point: typing.Optional["slide_point"] = None,
25
+ override_context: typing.Union[dict, bpy.types.Context] = None,
26
+ execution_context: typing.Union[str, int] = None,
27
+ undo: bool = None,
28
+ MASK_OT_add_feather_vertex: add_feather_vertex = None,
29
+ MASK_OT_slide_point: slide_point = None,
36
30
  ):
37
31
  """Add new vertex to feather and slide it
38
32
 
39
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
40
- :type execution_context: typing.Optional[typing.Union[int, str]]
41
- :type undo: typing.Optional[bool]
33
+ :type override_context: typing.Union[dict, bpy.types.Context]
34
+ :type execution_context: typing.Union[str, int]
35
+ :type undo: bool
42
36
  :param MASK_OT_add_feather_vertex: Add Feather Vertex, Add vertex to feather
43
- :type MASK_OT_add_feather_vertex: typing.Optional['add_feather_vertex']
37
+ :type MASK_OT_add_feather_vertex: add_feather_vertex
44
38
  :param MASK_OT_slide_point: Slide Point, Slide control points
45
- :type MASK_OT_slide_point: typing.Optional['slide_point']
39
+ :type MASK_OT_slide_point: slide_point
46
40
  """
47
41
 
48
42
  ...
49
43
 
50
44
  def add_vertex(
51
- override_context: typing.Optional[
52
- typing.Union["bpy.types.Context", typing.Dict]
53
- ] = None,
54
- execution_context: typing.Optional[typing.Union[int, str]] = None,
55
- undo: typing.Optional[bool] = None,
56
- *,
57
- location: typing.Optional[typing.Any] = (0.0, 0.0),
45
+ override_context: typing.Union[dict, bpy.types.Context] = None,
46
+ execution_context: typing.Union[str, int] = None,
47
+ undo: bool = None,
48
+ location: typing.Any = (0.0, 0.0),
58
49
  ):
59
50
  """Add vertex to active spline
60
51
 
61
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
62
- :type execution_context: typing.Optional[typing.Union[int, str]]
63
- :type undo: typing.Optional[bool]
52
+ :type override_context: typing.Union[dict, bpy.types.Context]
53
+ :type execution_context: typing.Union[str, int]
54
+ :type undo: bool
64
55
  :param location: Location, Location of vertex in normalized space
65
- :type location: typing.Optional[typing.Any]
56
+ :type location: typing.Any
66
57
  """
67
58
 
68
59
  ...
69
60
 
70
61
  def add_vertex_slide(
71
- override_context: typing.Optional[
72
- typing.Union["bpy.types.Context", typing.Dict]
73
- ] = None,
74
- execution_context: typing.Optional[typing.Union[int, str]] = None,
75
- undo: typing.Optional[bool] = None,
76
- *,
77
- MASK_OT_add_vertex: typing.Optional["add_vertex"] = None,
78
- MASK_OT_slide_point: typing.Optional["slide_point"] = None,
62
+ override_context: typing.Union[dict, bpy.types.Context] = None,
63
+ execution_context: typing.Union[str, int] = None,
64
+ undo: bool = None,
65
+ MASK_OT_add_vertex: add_vertex = None,
66
+ MASK_OT_slide_point: slide_point = None,
79
67
  ):
80
68
  """Add new vertex and slide it
81
69
 
82
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
83
- :type execution_context: typing.Optional[typing.Union[int, str]]
84
- :type undo: typing.Optional[bool]
70
+ :type override_context: typing.Union[dict, bpy.types.Context]
71
+ :type execution_context: typing.Union[str, int]
72
+ :type undo: bool
85
73
  :param MASK_OT_add_vertex: Add Vertex, Add vertex to active spline
86
- :type MASK_OT_add_vertex: typing.Optional['add_vertex']
74
+ :type MASK_OT_add_vertex: add_vertex
87
75
  :param MASK_OT_slide_point: Slide Point, Slide control points
88
- :type MASK_OT_slide_point: typing.Optional['slide_point']
76
+ :type MASK_OT_slide_point: slide_point
89
77
  """
90
78
 
91
79
  ...
92
80
 
93
81
  def copy_splines(
94
- override_context: typing.Optional[
95
- typing.Union["bpy.types.Context", typing.Dict]
96
- ] = None,
97
- execution_context: typing.Optional[typing.Union[int, str]] = None,
98
- undo: typing.Optional[bool] = None,
82
+ override_context: typing.Union[dict, bpy.types.Context] = None,
83
+ execution_context: typing.Union[str, int] = None,
84
+ undo: bool = None,
99
85
  ):
100
86
  """Copy the selected splines to the internal clipboard
101
87
 
102
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
103
- :type execution_context: typing.Optional[typing.Union[int, str]]
104
- :type undo: typing.Optional[bool]
88
+ :type override_context: typing.Union[dict, bpy.types.Context]
89
+ :type execution_context: typing.Union[str, int]
90
+ :type undo: bool
105
91
  """
106
92
 
107
93
  ...
108
94
 
109
95
  def cyclic_toggle(
110
- override_context: typing.Optional[
111
- typing.Union["bpy.types.Context", typing.Dict]
112
- ] = None,
113
- execution_context: typing.Optional[typing.Union[int, str]] = None,
114
- undo: typing.Optional[bool] = None,
96
+ override_context: typing.Union[dict, bpy.types.Context] = None,
97
+ execution_context: typing.Union[str, int] = None,
98
+ undo: bool = None,
115
99
  ):
116
100
  """Toggle cyclic for selected splines
117
101
 
118
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
119
- :type execution_context: typing.Optional[typing.Union[int, str]]
120
- :type undo: typing.Optional[bool]
102
+ :type override_context: typing.Union[dict, bpy.types.Context]
103
+ :type execution_context: typing.Union[str, int]
104
+ :type undo: bool
121
105
  """
122
106
 
123
107
  ...
124
108
 
125
109
  def delete(
126
- override_context: typing.Optional[
127
- typing.Union["bpy.types.Context", typing.Dict]
128
- ] = None,
129
- execution_context: typing.Optional[typing.Union[int, str]] = None,
130
- undo: typing.Optional[bool] = None,
131
- *,
132
- confirm: typing.Optional[typing.Union[bool, typing.Any]] = True,
110
+ override_context: typing.Union[dict, bpy.types.Context] = None,
111
+ execution_context: typing.Union[str, int] = None,
112
+ undo: bool = None,
113
+ confirm: typing.Union[bool, typing.Any] = True,
133
114
  ):
134
115
  """Delete selected control points or splines
135
116
 
136
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
137
- :type execution_context: typing.Optional[typing.Union[int, str]]
138
- :type undo: typing.Optional[bool]
117
+ :type override_context: typing.Union[dict, bpy.types.Context]
118
+ :type execution_context: typing.Union[str, int]
119
+ :type undo: bool
139
120
  :param confirm: Confirm, Prompt for confirmation
140
- :type confirm: typing.Optional[typing.Union[bool, typing.Any]]
121
+ :type confirm: typing.Union[bool, typing.Any]
141
122
  """
142
123
 
143
124
  ...
144
125
 
145
126
  def duplicate(
146
- override_context: typing.Optional[
147
- typing.Union["bpy.types.Context", typing.Dict]
148
- ] = None,
149
- execution_context: typing.Optional[typing.Union[int, str]] = None,
150
- undo: typing.Optional[bool] = None,
127
+ override_context: typing.Union[dict, bpy.types.Context] = None,
128
+ execution_context: typing.Union[str, int] = None,
129
+ undo: bool = None,
151
130
  ):
152
131
  """Duplicate selected control points and segments between them
153
132
 
154
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
155
- :type execution_context: typing.Optional[typing.Union[int, str]]
156
- :type undo: typing.Optional[bool]
133
+ :type override_context: typing.Union[dict, bpy.types.Context]
134
+ :type execution_context: typing.Union[str, int]
135
+ :type undo: bool
157
136
  """
158
137
 
159
138
  ...
160
139
 
161
140
  def duplicate_move(
162
- override_context: typing.Optional[
163
- typing.Union["bpy.types.Context", typing.Dict]
164
- ] = None,
165
- execution_context: typing.Optional[typing.Union[int, str]] = None,
166
- undo: typing.Optional[bool] = None,
167
- *,
168
- MASK_OT_duplicate: typing.Optional["duplicate"] = None,
169
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
141
+ override_context: typing.Union[dict, bpy.types.Context] = None,
142
+ execution_context: typing.Union[str, int] = None,
143
+ undo: bool = None,
144
+ MASK_OT_duplicate: duplicate = None,
145
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
170
146
  ):
171
147
  """Duplicate mask and move
172
148
 
173
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
174
- :type execution_context: typing.Optional[typing.Union[int, str]]
175
- :type undo: typing.Optional[bool]
149
+ :type override_context: typing.Union[dict, bpy.types.Context]
150
+ :type execution_context: typing.Union[str, int]
151
+ :type undo: bool
176
152
  :param MASK_OT_duplicate: Duplicate Mask, Duplicate selected control points and segments between them
177
- :type MASK_OT_duplicate: typing.Optional['duplicate']
153
+ :type MASK_OT_duplicate: duplicate
178
154
  :param TRANSFORM_OT_translate: Move, Move selected items
179
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
155
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
180
156
  """
181
157
 
182
158
  ...
183
159
 
184
160
  def feather_weight_clear(
185
- override_context: typing.Optional[
186
- typing.Union["bpy.types.Context", typing.Dict]
187
- ] = None,
188
- execution_context: typing.Optional[typing.Union[int, str]] = None,
189
- undo: typing.Optional[bool] = None,
161
+ override_context: typing.Union[dict, bpy.types.Context] = None,
162
+ execution_context: typing.Union[str, int] = None,
163
+ undo: bool = None,
190
164
  ):
191
165
  """Reset the feather weight to zero
192
166
 
193
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
194
- :type execution_context: typing.Optional[typing.Union[int, str]]
195
- :type undo: typing.Optional[bool]
167
+ :type override_context: typing.Union[dict, bpy.types.Context]
168
+ :type execution_context: typing.Union[str, int]
169
+ :type undo: bool
196
170
  """
197
171
 
198
172
  ...
199
173
 
200
174
  def handle_type_set(
201
- override_context: typing.Optional[
202
- typing.Union["bpy.types.Context", typing.Dict]
203
- ] = None,
204
- execution_context: typing.Optional[typing.Union[int, str]] = None,
205
- undo: typing.Optional[bool] = None,
206
- *,
207
- type: typing.Optional[typing.Any] = "AUTO",
175
+ override_context: typing.Union[dict, bpy.types.Context] = None,
176
+ execution_context: typing.Union[str, int] = None,
177
+ undo: bool = None,
178
+ type: typing.Any = "AUTO",
208
179
  ):
209
180
  """Set type of handles for selected control points
210
181
 
211
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
212
- :type execution_context: typing.Optional[typing.Union[int, str]]
213
- :type undo: typing.Optional[bool]
182
+ :type override_context: typing.Union[dict, bpy.types.Context]
183
+ :type execution_context: typing.Union[str, int]
184
+ :type undo: bool
214
185
  :param type: Type, Spline type
215
- :type type: typing.Optional[typing.Any]
186
+ :type type: typing.Any
216
187
  """
217
188
 
218
189
  ...
219
190
 
220
191
  def hide_view_clear(
221
- override_context: typing.Optional[
222
- typing.Union["bpy.types.Context", typing.Dict]
223
- ] = None,
224
- execution_context: typing.Optional[typing.Union[int, str]] = None,
225
- undo: typing.Optional[bool] = None,
226
- *,
227
- select: typing.Optional[typing.Union[bool, typing.Any]] = True,
192
+ override_context: typing.Union[dict, bpy.types.Context] = None,
193
+ execution_context: typing.Union[str, int] = None,
194
+ undo: bool = None,
195
+ select: typing.Union[bool, typing.Any] = True,
228
196
  ):
229
197
  """Reveal temporarily hidden mask layers
230
198
 
231
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
232
- :type execution_context: typing.Optional[typing.Union[int, str]]
233
- :type undo: typing.Optional[bool]
199
+ :type override_context: typing.Union[dict, bpy.types.Context]
200
+ :type execution_context: typing.Union[str, int]
201
+ :type undo: bool
234
202
  :param select: Select
235
- :type select: typing.Optional[typing.Union[bool, typing.Any]]
203
+ :type select: typing.Union[bool, typing.Any]
236
204
  """
237
205
 
238
206
  ...
239
207
 
240
208
  def hide_view_set(
241
- override_context: typing.Optional[
242
- typing.Union["bpy.types.Context", typing.Dict]
243
- ] = None,
244
- execution_context: typing.Optional[typing.Union[int, str]] = None,
245
- undo: typing.Optional[bool] = None,
246
- *,
247
- unselected: typing.Optional[typing.Union[bool, typing.Any]] = False,
209
+ override_context: typing.Union[dict, bpy.types.Context] = None,
210
+ execution_context: typing.Union[str, int] = None,
211
+ undo: bool = None,
212
+ unselected: typing.Union[bool, typing.Any] = False,
248
213
  ):
249
214
  """Temporarily hide mask layers
250
215
 
251
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
252
- :type execution_context: typing.Optional[typing.Union[int, str]]
253
- :type undo: typing.Optional[bool]
216
+ :type override_context: typing.Union[dict, bpy.types.Context]
217
+ :type execution_context: typing.Union[str, int]
218
+ :type undo: bool
254
219
  :param unselected: Unselected, Hide unselected rather than selected layers
255
- :type unselected: typing.Optional[typing.Union[bool, typing.Any]]
220
+ :type unselected: typing.Union[bool, typing.Any]
256
221
  """
257
222
 
258
223
  ...
259
224
 
260
225
  def layer_move(
261
- override_context: typing.Optional[
262
- typing.Union["bpy.types.Context", typing.Dict]
263
- ] = None,
264
- execution_context: typing.Optional[typing.Union[int, str]] = None,
265
- undo: typing.Optional[bool] = None,
266
- *,
267
- direction: typing.Optional[typing.Any] = "UP",
226
+ override_context: typing.Union[dict, bpy.types.Context] = None,
227
+ execution_context: typing.Union[str, int] = None,
228
+ undo: bool = None,
229
+ direction: typing.Any = "UP",
268
230
  ):
269
231
  """Move the active layer up/down in the list
270
232
 
271
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
272
- :type execution_context: typing.Optional[typing.Union[int, str]]
273
- :type undo: typing.Optional[bool]
233
+ :type override_context: typing.Union[dict, bpy.types.Context]
234
+ :type execution_context: typing.Union[str, int]
235
+ :type undo: bool
274
236
  :param direction: Direction, Direction to move the active layer
275
- :type direction: typing.Optional[typing.Any]
237
+ :type direction: typing.Any
276
238
  """
277
239
 
278
240
  ...
279
241
 
280
242
  def layer_new(
281
- override_context: typing.Optional[
282
- typing.Union["bpy.types.Context", typing.Dict]
283
- ] = None,
284
- execution_context: typing.Optional[typing.Union[int, str]] = None,
285
- undo: typing.Optional[bool] = None,
286
- *,
243
+ override_context: typing.Union[dict, bpy.types.Context] = None,
244
+ execution_context: typing.Union[str, int] = None,
245
+ undo: bool = None,
287
246
  name: typing.Union[str, typing.Any] = "",
288
247
  ):
289
248
  """Add new mask layer for masking
290
249
 
291
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
292
- :type execution_context: typing.Optional[typing.Union[int, str]]
293
- :type undo: typing.Optional[bool]
250
+ :type override_context: typing.Union[dict, bpy.types.Context]
251
+ :type execution_context: typing.Union[str, int]
252
+ :type undo: bool
294
253
  :param name: Name, Name of new mask layer
295
254
  :type name: typing.Union[str, typing.Any]
296
255
  """
@@ -298,35 +257,30 @@ def layer_new(
298
257
  ...
299
258
 
300
259
  def layer_remove(
301
- override_context: typing.Optional[
302
- typing.Union["bpy.types.Context", typing.Dict]
303
- ] = None,
304
- execution_context: typing.Optional[typing.Union[int, str]] = None,
305
- undo: typing.Optional[bool] = None,
260
+ override_context: typing.Union[dict, bpy.types.Context] = None,
261
+ execution_context: typing.Union[str, int] = None,
262
+ undo: bool = None,
306
263
  ):
307
264
  """Remove mask layer
308
265
 
309
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
310
- :type execution_context: typing.Optional[typing.Union[int, str]]
311
- :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
312
269
  """
313
270
 
314
271
  ...
315
272
 
316
273
  def new(
317
- override_context: typing.Optional[
318
- typing.Union["bpy.types.Context", typing.Dict]
319
- ] = None,
320
- execution_context: typing.Optional[typing.Union[int, str]] = None,
321
- undo: typing.Optional[bool] = None,
322
- *,
274
+ override_context: typing.Union[dict, bpy.types.Context] = None,
275
+ execution_context: typing.Union[str, int] = None,
276
+ undo: bool = None,
323
277
  name: typing.Union[str, typing.Any] = "",
324
278
  ):
325
279
  """Create new mask
326
280
 
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]
281
+ :type override_context: typing.Union[dict, bpy.types.Context]
282
+ :type execution_context: typing.Union[str, int]
283
+ :type undo: bool
330
284
  :param name: Name, Name of new mask
331
285
  :type name: typing.Union[str, typing.Any]
332
286
  """
@@ -334,164 +288,144 @@ def new(
334
288
  ...
335
289
 
336
290
  def normals_make_consistent(
337
- override_context: typing.Optional[
338
- typing.Union["bpy.types.Context", typing.Dict]
339
- ] = None,
340
- execution_context: typing.Optional[typing.Union[int, str]] = None,
341
- undo: typing.Optional[bool] = None,
291
+ override_context: typing.Union[dict, bpy.types.Context] = None,
292
+ execution_context: typing.Union[str, int] = None,
293
+ undo: bool = None,
342
294
  ):
343
295
  """Recalculate the direction of selected handles
344
296
 
345
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
346
- :type execution_context: typing.Optional[typing.Union[int, str]]
347
- :type undo: typing.Optional[bool]
297
+ :type override_context: typing.Union[dict, bpy.types.Context]
298
+ :type execution_context: typing.Union[str, int]
299
+ :type undo: bool
348
300
  """
349
301
 
350
302
  ...
351
303
 
352
304
  def parent_clear(
353
- override_context: typing.Optional[
354
- typing.Union["bpy.types.Context", typing.Dict]
355
- ] = None,
356
- execution_context: typing.Optional[typing.Union[int, str]] = None,
357
- undo: typing.Optional[bool] = None,
305
+ override_context: typing.Union[dict, bpy.types.Context] = None,
306
+ execution_context: typing.Union[str, int] = None,
307
+ undo: bool = None,
358
308
  ):
359
309
  """Clear the mask's parenting
360
310
 
361
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
362
- :type execution_context: typing.Optional[typing.Union[int, str]]
363
- :type undo: typing.Optional[bool]
311
+ :type override_context: typing.Union[dict, bpy.types.Context]
312
+ :type execution_context: typing.Union[str, int]
313
+ :type undo: bool
364
314
  """
365
315
 
366
316
  ...
367
317
 
368
318
  def parent_set(
369
- override_context: typing.Optional[
370
- typing.Union["bpy.types.Context", typing.Dict]
371
- ] = None,
372
- execution_context: typing.Optional[typing.Union[int, str]] = None,
373
- undo: typing.Optional[bool] = None,
319
+ override_context: typing.Union[dict, bpy.types.Context] = None,
320
+ execution_context: typing.Union[str, int] = None,
321
+ undo: bool = None,
374
322
  ):
375
323
  """Set the mask's parenting
376
324
 
377
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
378
- :type execution_context: typing.Optional[typing.Union[int, str]]
379
- :type undo: typing.Optional[bool]
325
+ :type override_context: typing.Union[dict, bpy.types.Context]
326
+ :type execution_context: typing.Union[str, int]
327
+ :type undo: bool
380
328
  """
381
329
 
382
330
  ...
383
331
 
384
332
  def paste_splines(
385
- override_context: typing.Optional[
386
- typing.Union["bpy.types.Context", typing.Dict]
387
- ] = None,
388
- execution_context: typing.Optional[typing.Union[int, str]] = None,
389
- undo: typing.Optional[bool] = None,
333
+ override_context: typing.Union[dict, bpy.types.Context] = None,
334
+ execution_context: typing.Union[str, int] = None,
335
+ undo: bool = None,
390
336
  ):
391
337
  """Paste splines from the internal clipboard
392
338
 
393
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
394
- :type execution_context: typing.Optional[typing.Union[int, str]]
395
- :type undo: typing.Optional[bool]
339
+ :type override_context: typing.Union[dict, bpy.types.Context]
340
+ :type execution_context: typing.Union[str, int]
341
+ :type undo: bool
396
342
  """
397
343
 
398
344
  ...
399
345
 
400
346
  def primitive_circle_add(
401
- override_context: typing.Optional[
402
- typing.Union["bpy.types.Context", typing.Dict]
403
- ] = None,
404
- execution_context: typing.Optional[typing.Union[int, str]] = None,
405
- undo: typing.Optional[bool] = None,
406
- *,
407
- size: typing.Optional[typing.Any] = 100.0,
408
- location: typing.Optional[typing.Any] = (0.0, 0.0),
347
+ override_context: typing.Union[dict, bpy.types.Context] = None,
348
+ execution_context: typing.Union[str, int] = None,
349
+ undo: bool = None,
350
+ size: typing.Any = 100.0,
351
+ location: typing.Any = (0.0, 0.0),
409
352
  ):
410
353
  """Add new circle-shaped spline
411
354
 
412
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
413
- :type execution_context: typing.Optional[typing.Union[int, str]]
414
- :type undo: typing.Optional[bool]
355
+ :type override_context: typing.Union[dict, bpy.types.Context]
356
+ :type execution_context: typing.Union[str, int]
357
+ :type undo: bool
415
358
  :param size: Size, Size of new circle
416
- :type size: typing.Optional[typing.Any]
359
+ :type size: typing.Any
417
360
  :param location: Location, Location of new circle
418
- :type location: typing.Optional[typing.Any]
361
+ :type location: typing.Any
419
362
  """
420
363
 
421
364
  ...
422
365
 
423
366
  def primitive_square_add(
424
- override_context: typing.Optional[
425
- typing.Union["bpy.types.Context", typing.Dict]
426
- ] = None,
427
- execution_context: typing.Optional[typing.Union[int, str]] = None,
428
- undo: typing.Optional[bool] = None,
429
- *,
430
- size: typing.Optional[typing.Any] = 100.0,
431
- location: typing.Optional[typing.Any] = (0.0, 0.0),
367
+ override_context: typing.Union[dict, bpy.types.Context] = None,
368
+ execution_context: typing.Union[str, int] = None,
369
+ undo: bool = None,
370
+ size: typing.Any = 100.0,
371
+ location: typing.Any = (0.0, 0.0),
432
372
  ):
433
373
  """Add new square-shaped spline
434
374
 
435
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
436
- :type execution_context: typing.Optional[typing.Union[int, str]]
437
- :type undo: typing.Optional[bool]
375
+ :type override_context: typing.Union[dict, bpy.types.Context]
376
+ :type execution_context: typing.Union[str, int]
377
+ :type undo: bool
438
378
  :param size: Size, Size of new circle
439
- :type size: typing.Optional[typing.Any]
379
+ :type size: typing.Any
440
380
  :param location: Location, Location of new circle
441
- :type location: typing.Optional[typing.Any]
381
+ :type location: typing.Any
442
382
  """
443
383
 
444
384
  ...
445
385
 
446
386
  def select(
447
- override_context: typing.Optional[
448
- typing.Union["bpy.types.Context", typing.Dict]
449
- ] = None,
450
- execution_context: typing.Optional[typing.Union[int, str]] = None,
451
- undo: typing.Optional[bool] = None,
452
- *,
453
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
454
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
455
- toggle: typing.Optional[typing.Union[bool, typing.Any]] = False,
456
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
457
- select_passthrough: typing.Optional[typing.Union[bool, typing.Any]] = False,
458
- location: typing.Optional[typing.Any] = (0.0, 0.0),
387
+ override_context: typing.Union[dict, bpy.types.Context] = None,
388
+ execution_context: typing.Union[str, int] = None,
389
+ undo: bool = None,
390
+ extend: typing.Union[bool, typing.Any] = False,
391
+ deselect: typing.Union[bool, typing.Any] = False,
392
+ toggle: typing.Union[bool, typing.Any] = False,
393
+ deselect_all: typing.Union[bool, typing.Any] = False,
394
+ select_passthrough: typing.Union[bool, typing.Any] = False,
395
+ location: typing.Any = (0.0, 0.0),
459
396
  ):
460
397
  """Select spline points
461
398
 
462
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
463
- :type execution_context: typing.Optional[typing.Union[int, str]]
464
- :type undo: typing.Optional[bool]
399
+ :type override_context: typing.Union[dict, bpy.types.Context]
400
+ :type execution_context: typing.Union[str, int]
401
+ :type undo: bool
465
402
  :param extend: Extend, Extend selection instead of deselecting everything first
466
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
403
+ :type extend: typing.Union[bool, typing.Any]
467
404
  :param deselect: Deselect, Remove from selection
468
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
405
+ :type deselect: typing.Union[bool, typing.Any]
469
406
  :param toggle: Toggle Selection, Toggle the selection
470
- :type toggle: typing.Optional[typing.Union[bool, typing.Any]]
407
+ :type toggle: typing.Union[bool, typing.Any]
471
408
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
472
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
409
+ :type deselect_all: typing.Union[bool, typing.Any]
473
410
  :param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
474
- :type select_passthrough: typing.Optional[typing.Union[bool, typing.Any]]
411
+ :type select_passthrough: typing.Union[bool, typing.Any]
475
412
  :param location: Location, Location of vertex in normalized space
476
- :type location: typing.Optional[typing.Any]
413
+ :type location: typing.Any
477
414
  """
478
415
 
479
416
  ...
480
417
 
481
418
  def select_all(
482
- override_context: typing.Optional[
483
- typing.Union["bpy.types.Context", typing.Dict]
484
- ] = None,
485
- execution_context: typing.Optional[typing.Union[int, str]] = None,
486
- undo: typing.Optional[bool] = None,
487
- *,
488
- action: typing.Optional[typing.Any] = "TOGGLE",
419
+ override_context: typing.Union[dict, bpy.types.Context] = None,
420
+ execution_context: typing.Union[str, int] = None,
421
+ undo: bool = None,
422
+ action: typing.Any = "TOGGLE",
489
423
  ):
490
424
  """Change selection of all curve points
491
425
 
492
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
493
- :type execution_context: typing.Optional[typing.Union[int, str]]
494
- :type undo: typing.Optional[bool]
426
+ :type override_context: typing.Union[dict, bpy.types.Context]
427
+ :type execution_context: typing.Union[str, int]
428
+ :type undo: bool
495
429
  :param action: Action, Selection action to execute
496
430
 
497
431
  TOGGLE
@@ -505,40 +439,37 @@ def select_all(
505
439
 
506
440
  INVERT
507
441
  Invert -- Invert selection of all elements.
508
- :type action: typing.Optional[typing.Any]
442
+ :type action: typing.Any
509
443
  """
510
444
 
511
445
  ...
512
446
 
513
447
  def select_box(
514
- override_context: typing.Optional[
515
- typing.Union["bpy.types.Context", typing.Dict]
516
- ] = None,
517
- execution_context: typing.Optional[typing.Union[int, str]] = None,
518
- undo: typing.Optional[bool] = None,
519
- *,
520
- xmin: typing.Optional[typing.Any] = 0,
521
- xmax: typing.Optional[typing.Any] = 0,
522
- ymin: typing.Optional[typing.Any] = 0,
523
- ymax: typing.Optional[typing.Any] = 0,
524
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
525
- mode: typing.Optional[typing.Any] = "SET",
448
+ override_context: typing.Union[dict, bpy.types.Context] = None,
449
+ execution_context: typing.Union[str, int] = None,
450
+ undo: bool = None,
451
+ xmin: typing.Any = 0,
452
+ xmax: typing.Any = 0,
453
+ ymin: typing.Any = 0,
454
+ ymax: typing.Any = 0,
455
+ wait_for_input: typing.Union[bool, typing.Any] = True,
456
+ mode: typing.Any = "SET",
526
457
  ):
527
458
  """Select curve points using box selection
528
459
 
529
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
530
- :type execution_context: typing.Optional[typing.Union[int, str]]
531
- :type undo: typing.Optional[bool]
460
+ :type override_context: typing.Union[dict, bpy.types.Context]
461
+ :type execution_context: typing.Union[str, int]
462
+ :type undo: bool
532
463
  :param xmin: X Min
533
- :type xmin: typing.Optional[typing.Any]
464
+ :type xmin: typing.Any
534
465
  :param xmax: X Max
535
- :type xmax: typing.Optional[typing.Any]
466
+ :type xmax: typing.Any
536
467
  :param ymin: Y Min
537
- :type ymin: typing.Optional[typing.Any]
468
+ :type ymin: typing.Any
538
469
  :param ymax: Y Max
539
- :type ymax: typing.Optional[typing.Any]
470
+ :type ymax: typing.Any
540
471
  :param wait_for_input: Wait for Input
541
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
472
+ :type wait_for_input: typing.Union[bool, typing.Any]
542
473
  :param mode: Mode
543
474
 
544
475
  SET
@@ -549,37 +480,34 @@ def select_box(
549
480
 
550
481
  SUB
551
482
  Subtract -- Subtract existing selection.
552
- :type mode: typing.Optional[typing.Any]
483
+ :type mode: typing.Any
553
484
  """
554
485
 
555
486
  ...
556
487
 
557
488
  def select_circle(
558
- override_context: typing.Optional[
559
- typing.Union["bpy.types.Context", typing.Dict]
560
- ] = None,
561
- execution_context: typing.Optional[typing.Union[int, str]] = None,
562
- undo: typing.Optional[bool] = None,
563
- *,
564
- x: typing.Optional[typing.Any] = 0,
565
- y: typing.Optional[typing.Any] = 0,
566
- radius: typing.Optional[typing.Any] = 25,
567
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
568
- mode: typing.Optional[typing.Any] = "SET",
489
+ override_context: typing.Union[dict, bpy.types.Context] = None,
490
+ execution_context: typing.Union[str, int] = None,
491
+ undo: bool = None,
492
+ x: typing.Any = 0,
493
+ y: typing.Any = 0,
494
+ radius: typing.Any = 25,
495
+ wait_for_input: typing.Union[bool, typing.Any] = True,
496
+ mode: typing.Any = "SET",
569
497
  ):
570
498
  """Select curve points using circle selection
571
499
 
572
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
573
- :type execution_context: typing.Optional[typing.Union[int, str]]
574
- :type undo: typing.Optional[bool]
500
+ :type override_context: typing.Union[dict, bpy.types.Context]
501
+ :type execution_context: typing.Union[str, int]
502
+ :type undo: bool
575
503
  :param x: X
576
- :type x: typing.Optional[typing.Any]
504
+ :type x: typing.Any
577
505
  :param y: Y
578
- :type y: typing.Optional[typing.Any]
506
+ :type y: typing.Any
579
507
  :param radius: Radius
580
- :type radius: typing.Optional[typing.Any]
508
+ :type radius: typing.Any
581
509
  :param wait_for_input: Wait for Input
582
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
510
+ :type wait_for_input: typing.Union[bool, typing.Any]
583
511
  :param mode: Mode
584
512
 
585
513
  SET
@@ -590,30 +518,25 @@ def select_circle(
590
518
 
591
519
  SUB
592
520
  Subtract -- Subtract existing selection.
593
- :type mode: typing.Optional[typing.Any]
521
+ :type mode: typing.Any
594
522
  """
595
523
 
596
524
  ...
597
525
 
598
526
  def select_lasso(
599
- override_context: typing.Optional[
600
- typing.Union["bpy.types.Context", typing.Dict]
601
- ] = None,
602
- execution_context: typing.Optional[typing.Union[int, str]] = None,
603
- undo: typing.Optional[bool] = None,
604
- *,
605
- path: typing.Optional[
606
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
607
- ] = None,
608
- mode: typing.Optional[typing.Any] = "SET",
527
+ override_context: typing.Union[dict, bpy.types.Context] = None,
528
+ execution_context: typing.Union[str, int] = None,
529
+ undo: bool = None,
530
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
531
+ mode: typing.Any = "SET",
609
532
  ):
610
533
  """Select curve points using lasso selection
611
534
 
612
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
613
- :type execution_context: typing.Optional[typing.Union[int, str]]
614
- :type undo: typing.Optional[bool]
535
+ :type override_context: typing.Union[dict, bpy.types.Context]
536
+ :type execution_context: typing.Union[str, int]
537
+ :type undo: bool
615
538
  :param path: Path
616
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
539
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
617
540
  :param mode: Mode
618
541
 
619
542
  SET
@@ -624,201 +547,176 @@ def select_lasso(
624
547
 
625
548
  SUB
626
549
  Subtract -- Subtract existing selection.
627
- :type mode: typing.Optional[typing.Any]
550
+ :type mode: typing.Any
628
551
  """
629
552
 
630
553
  ...
631
554
 
632
555
  def select_less(
633
- override_context: typing.Optional[
634
- typing.Union["bpy.types.Context", typing.Dict]
635
- ] = None,
636
- execution_context: typing.Optional[typing.Union[int, str]] = None,
637
- undo: typing.Optional[bool] = None,
556
+ override_context: typing.Union[dict, bpy.types.Context] = None,
557
+ execution_context: typing.Union[str, int] = None,
558
+ undo: bool = None,
638
559
  ):
639
560
  """Deselect spline points at the boundary of each selection region
640
561
 
641
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
642
- :type execution_context: typing.Optional[typing.Union[int, str]]
643
- :type undo: typing.Optional[bool]
562
+ :type override_context: typing.Union[dict, bpy.types.Context]
563
+ :type execution_context: typing.Union[str, int]
564
+ :type undo: bool
644
565
  """
645
566
 
646
567
  ...
647
568
 
648
569
  def select_linked(
649
- override_context: typing.Optional[
650
- typing.Union["bpy.types.Context", typing.Dict]
651
- ] = None,
652
- execution_context: typing.Optional[typing.Union[int, str]] = None,
653
- undo: typing.Optional[bool] = None,
570
+ override_context: typing.Union[dict, bpy.types.Context] = None,
571
+ execution_context: typing.Union[str, int] = None,
572
+ undo: bool = None,
654
573
  ):
655
574
  """Select all curve points linked to already selected ones
656
575
 
657
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
658
- :type execution_context: typing.Optional[typing.Union[int, str]]
659
- :type undo: typing.Optional[bool]
576
+ :type override_context: typing.Union[dict, bpy.types.Context]
577
+ :type execution_context: typing.Union[str, int]
578
+ :type undo: bool
660
579
  """
661
580
 
662
581
  ...
663
582
 
664
583
  def select_linked_pick(
665
- override_context: typing.Optional[
666
- typing.Union["bpy.types.Context", typing.Dict]
667
- ] = None,
668
- execution_context: typing.Optional[typing.Union[int, str]] = None,
669
- undo: typing.Optional[bool] = None,
670
- *,
671
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
584
+ override_context: typing.Union[dict, bpy.types.Context] = None,
585
+ execution_context: typing.Union[str, int] = None,
586
+ undo: bool = None,
587
+ deselect: typing.Union[bool, typing.Any] = False,
672
588
  ):
673
589
  """(De)select all points linked to the curve under the mouse cursor
674
590
 
675
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
676
- :type execution_context: typing.Optional[typing.Union[int, str]]
677
- :type undo: typing.Optional[bool]
591
+ :type override_context: typing.Union[dict, bpy.types.Context]
592
+ :type execution_context: typing.Union[str, int]
593
+ :type undo: bool
678
594
  :param deselect: Deselect
679
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
595
+ :type deselect: typing.Union[bool, typing.Any]
680
596
  """
681
597
 
682
598
  ...
683
599
 
684
600
  def select_more(
685
- override_context: typing.Optional[
686
- typing.Union["bpy.types.Context", typing.Dict]
687
- ] = None,
688
- execution_context: typing.Optional[typing.Union[int, str]] = None,
689
- undo: typing.Optional[bool] = None,
601
+ override_context: typing.Union[dict, bpy.types.Context] = None,
602
+ execution_context: typing.Union[str, int] = None,
603
+ undo: bool = None,
690
604
  ):
691
605
  """Select more spline points connected to initial selection
692
606
 
693
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
694
- :type execution_context: typing.Optional[typing.Union[int, str]]
695
- :type undo: typing.Optional[bool]
607
+ :type override_context: typing.Union[dict, bpy.types.Context]
608
+ :type execution_context: typing.Union[str, int]
609
+ :type undo: bool
696
610
  """
697
611
 
698
612
  ...
699
613
 
700
614
  def shape_key_clear(
701
- override_context: typing.Optional[
702
- typing.Union["bpy.types.Context", typing.Dict]
703
- ] = None,
704
- execution_context: typing.Optional[typing.Union[int, str]] = None,
705
- undo: typing.Optional[bool] = None,
615
+ override_context: typing.Union[dict, bpy.types.Context] = None,
616
+ execution_context: typing.Union[str, int] = None,
617
+ undo: bool = None,
706
618
  ):
707
619
  """Remove mask shape keyframe for active mask layer at the current frame
708
620
 
709
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
710
- :type execution_context: typing.Optional[typing.Union[int, str]]
711
- :type undo: typing.Optional[bool]
621
+ :type override_context: typing.Union[dict, bpy.types.Context]
622
+ :type execution_context: typing.Union[str, int]
623
+ :type undo: bool
712
624
  """
713
625
 
714
626
  ...
715
627
 
716
628
  def shape_key_feather_reset(
717
- override_context: typing.Optional[
718
- typing.Union["bpy.types.Context", typing.Dict]
719
- ] = None,
720
- execution_context: typing.Optional[typing.Union[int, str]] = None,
721
- undo: typing.Optional[bool] = None,
629
+ override_context: typing.Union[dict, bpy.types.Context] = None,
630
+ execution_context: typing.Union[str, int] = None,
631
+ undo: bool = None,
722
632
  ):
723
633
  """Reset feather weights on all selected points animation values
724
634
 
725
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
726
- :type execution_context: typing.Optional[typing.Union[int, str]]
727
- :type undo: typing.Optional[bool]
635
+ :type override_context: typing.Union[dict, bpy.types.Context]
636
+ :type execution_context: typing.Union[str, int]
637
+ :type undo: bool
728
638
  """
729
639
 
730
640
  ...
731
641
 
732
642
  def shape_key_insert(
733
- override_context: typing.Optional[
734
- typing.Union["bpy.types.Context", typing.Dict]
735
- ] = None,
736
- execution_context: typing.Optional[typing.Union[int, str]] = None,
737
- undo: typing.Optional[bool] = None,
643
+ override_context: typing.Union[dict, bpy.types.Context] = None,
644
+ execution_context: typing.Union[str, int] = None,
645
+ undo: bool = None,
738
646
  ):
739
647
  """Insert mask shape keyframe for active mask layer at the current frame
740
648
 
741
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
742
- :type execution_context: typing.Optional[typing.Union[int, str]]
743
- :type undo: typing.Optional[bool]
649
+ :type override_context: typing.Union[dict, bpy.types.Context]
650
+ :type execution_context: typing.Union[str, int]
651
+ :type undo: bool
744
652
  """
745
653
 
746
654
  ...
747
655
 
748
656
  def shape_key_rekey(
749
- override_context: typing.Optional[
750
- typing.Union["bpy.types.Context", typing.Dict]
751
- ] = None,
752
- execution_context: typing.Optional[typing.Union[int, str]] = None,
753
- undo: typing.Optional[bool] = None,
754
- *,
755
- location: typing.Optional[typing.Union[bool, typing.Any]] = True,
756
- feather: typing.Optional[typing.Union[bool, typing.Any]] = True,
657
+ override_context: typing.Union[dict, bpy.types.Context] = None,
658
+ execution_context: typing.Union[str, int] = None,
659
+ undo: bool = None,
660
+ location: typing.Union[bool, typing.Any] = True,
661
+ feather: typing.Union[bool, typing.Any] = True,
757
662
  ):
758
663
  """Recalculate animation data on selected points for frames selected in the dopesheet
759
664
 
760
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
761
- :type execution_context: typing.Optional[typing.Union[int, str]]
762
- :type undo: typing.Optional[bool]
665
+ :type override_context: typing.Union[dict, bpy.types.Context]
666
+ :type execution_context: typing.Union[str, int]
667
+ :type undo: bool
763
668
  :param location: Location
764
- :type location: typing.Optional[typing.Union[bool, typing.Any]]
669
+ :type location: typing.Union[bool, typing.Any]
765
670
  :param feather: Feather
766
- :type feather: typing.Optional[typing.Union[bool, typing.Any]]
671
+ :type feather: typing.Union[bool, typing.Any]
767
672
  """
768
673
 
769
674
  ...
770
675
 
771
676
  def slide_point(
772
- override_context: typing.Optional[
773
- typing.Union["bpy.types.Context", typing.Dict]
774
- ] = None,
775
- execution_context: typing.Optional[typing.Union[int, str]] = None,
776
- undo: typing.Optional[bool] = None,
777
- *,
778
- slide_feather: typing.Optional[typing.Union[bool, typing.Any]] = False,
779
- is_new_point: typing.Optional[typing.Union[bool, typing.Any]] = False,
677
+ override_context: typing.Union[dict, bpy.types.Context] = None,
678
+ execution_context: typing.Union[str, int] = None,
679
+ undo: bool = None,
680
+ slide_feather: typing.Union[bool, typing.Any] = False,
681
+ is_new_point: typing.Union[bool, typing.Any] = False,
780
682
  ):
781
683
  """Slide control points
782
684
 
783
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
784
- :type execution_context: typing.Optional[typing.Union[int, str]]
785
- :type undo: typing.Optional[bool]
685
+ :type override_context: typing.Union[dict, bpy.types.Context]
686
+ :type execution_context: typing.Union[str, int]
687
+ :type undo: bool
786
688
  :param slide_feather: Slide Feather, First try to slide feather instead of vertex
787
- :type slide_feather: typing.Optional[typing.Union[bool, typing.Any]]
689
+ :type slide_feather: typing.Union[bool, typing.Any]
788
690
  :param is_new_point: Slide New Point, Newly created vertex is being slid
789
- :type is_new_point: typing.Optional[typing.Union[bool, typing.Any]]
691
+ :type is_new_point: typing.Union[bool, typing.Any]
790
692
  """
791
693
 
792
694
  ...
793
695
 
794
696
  def slide_spline_curvature(
795
- override_context: typing.Optional[
796
- typing.Union["bpy.types.Context", typing.Dict]
797
- ] = None,
798
- execution_context: typing.Optional[typing.Union[int, str]] = None,
799
- undo: typing.Optional[bool] = None,
697
+ override_context: typing.Union[dict, bpy.types.Context] = None,
698
+ execution_context: typing.Union[str, int] = None,
699
+ undo: bool = None,
800
700
  ):
801
701
  """Slide a point on the spline to define its curvature
802
702
 
803
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
804
- :type execution_context: typing.Optional[typing.Union[int, str]]
805
- :type undo: typing.Optional[bool]
703
+ :type override_context: typing.Union[dict, bpy.types.Context]
704
+ :type execution_context: typing.Union[str, int]
705
+ :type undo: bool
806
706
  """
807
707
 
808
708
  ...
809
709
 
810
710
  def switch_direction(
811
- override_context: typing.Optional[
812
- typing.Union["bpy.types.Context", typing.Dict]
813
- ] = None,
814
- execution_context: typing.Optional[typing.Union[int, str]] = None,
815
- undo: typing.Optional[bool] = None,
711
+ override_context: typing.Union[dict, bpy.types.Context] = None,
712
+ execution_context: typing.Union[str, int] = None,
713
+ undo: bool = None,
816
714
  ):
817
715
  """Switch direction of selected splines
818
716
 
819
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
820
- :type execution_context: typing.Optional[typing.Union[int, str]]
821
- :type undo: typing.Optional[bool]
717
+ :type override_context: typing.Union[dict, bpy.types.Context]
718
+ :type execution_context: typing.Union[str, int]
719
+ :type undo: bool
822
720
  """
823
721
 
824
722
  ...