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

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

Potentially problematic release.


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

Files changed (309) hide show
  1. addon_utils/__init__.pyi +54 -11
  2. animsys_refactor/__init__.pyi +36 -7
  3. aud/__init__.pyi +307 -321
  4. bgl/__init__.pyi +2926 -865
  5. bl_app_override/__init__.pyi +14 -4
  6. bl_app_override/helpers/__init__.pyi +24 -3
  7. bl_app_template_utils/__init__.pyi +19 -5
  8. bl_console_utils/__init__.pyi +0 -1
  9. bl_console_utils/autocomplete/__init__.pyi +2 -3
  10. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -6
  11. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -4
  12. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -6
  13. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -3
  14. bl_i18n_utils/__init__.pyi +2 -3
  15. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -16
  16. bl_i18n_utils/merge_po/__init__.pyi +4 -2
  17. bl_i18n_utils/settings/__init__.pyi +53 -7
  18. bl_i18n_utils/utils/__init__.pyi +332 -45
  19. bl_i18n_utils/utils_cli/__init__.pyi +29 -7
  20. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -2
  21. bl_i18n_utils/utils_rtl/__init__.pyi +9 -3
  22. bl_keymap_utils/__init__.pyi +2 -3
  23. bl_keymap_utils/io/__init__.pyi +44 -10
  24. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -2
  25. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -2
  26. bl_keymap_utils/platform_helpers/__init__.pyi +9 -3
  27. bl_keymap_utils/versioning/__init__.pyi +4 -2
  28. bl_math/__init__.pyi +21 -22
  29. bl_operators/__init__.pyi +30 -24
  30. bl_operators/add_mesh_torus/__init__.pyi +171 -38
  31. bl_operators/anim/__init__.pyi +1065 -227
  32. bl_operators/assets/__init__.pyi +427 -93
  33. bl_operators/bmesh/__init__.pyi +0 -1
  34. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -10
  35. bl_operators/clip/__init__.pyi +1342 -288
  36. bl_operators/console/__init__.pyi +647 -141
  37. bl_operators/constraint/__init__.pyi +524 -113
  38. bl_operators/file/__init__.pyi +396 -85
  39. bl_operators/freestyle/__init__.pyi +532 -114
  40. bl_operators/geometry_nodes/__init__.pyi +2412 -597
  41. bl_operators/image/__init__.pyi +380 -83
  42. bl_operators/mesh/__init__.pyi +401 -86
  43. bl_operators/node/__init__.pyi +1756 -385
  44. bl_operators/object/__init__.pyi +2022 -553
  45. bl_operators/object_align/__init__.pyi +145 -32
  46. bl_operators/object_quick_effects/__init__.pyi +555 -125
  47. bl_operators/object_randomize_transform/__init__.pyi +136 -33
  48. bl_operators/presets/__init__.pyi +3516 -709
  49. bl_operators/rigidbody/__init__.pyi +401 -86
  50. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -30
  51. bl_operators/sequencer/__init__.pyi +731 -150
  52. bl_operators/spreadsheet/__init__.pyi +145 -31
  53. bl_operators/userpref/__init__.pyi +3416 -825
  54. bl_operators/uvcalc_follow_active/__init__.pyi +149 -33
  55. bl_operators/uvcalc_lightmap/__init__.pyi +187 -35
  56. bl_operators/uvcalc_transform/__init__.pyi +344 -74
  57. bl_operators/vertexpaint_dirt/__init__.pyi +140 -31
  58. bl_operators/view3d/__init__.pyi +697 -147
  59. bl_operators/wm/__init__.pyi +6287 -1534
  60. bl_previews_utils/__init__.pyi +0 -1
  61. bl_previews_utils/bl_previews_render/__init__.pyi +34 -8
  62. bl_rna_utils/__init__.pyi +0 -1
  63. bl_rna_utils/data_path/__init__.pyi +12 -3
  64. bl_text_utils/__init__.pyi +0 -1
  65. bl_text_utils/external_editor/__init__.pyi +4 -2
  66. bl_ui/__init__.pyi +567 -170
  67. bl_ui/anim/__init__.pyi +164 -34
  68. bl_ui/asset_shelf/__init__.pyi +146 -32
  69. bl_ui/generic_ui_list/__init__.pyi +471 -100
  70. bl_ui/node_add_menu/__init__.pyi +196 -41
  71. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -622
  72. bl_ui/node_add_menu_geometry/__init__.pyi +8075 -1592
  73. bl_ui/node_add_menu_shader/__init__.pyi +1709 -349
  74. bl_ui/node_add_menu_texture/__init__.pyi +1502 -306
  75. bl_ui/properties_animviz/__init__.pyi +32 -3
  76. bl_ui/properties_collection/__init__.pyi +787 -180
  77. bl_ui/properties_constraint/__init__.pyi +28635 -5524
  78. bl_ui/properties_data_armature/__init__.pyi +1905 -449
  79. bl_ui/properties_data_bone/__init__.pyi +1560 -337
  80. bl_ui/properties_data_camera/__init__.pyi +2269 -495
  81. bl_ui/properties_data_curve/__init__.pyi +2362 -535
  82. bl_ui/properties_data_curves/__init__.pyi +951 -204
  83. bl_ui/properties_data_empty/__init__.pyi +317 -70
  84. bl_ui/properties_data_gpencil/__init__.pyi +2924 -735
  85. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -189
  86. bl_ui/properties_data_lattice/__init__.pyi +472 -105
  87. bl_ui/properties_data_light/__init__.pyi +1570 -338
  88. bl_ui/properties_data_lightprobe/__init__.pyi +938 -209
  89. bl_ui/properties_data_mesh/__init__.pyi +3205 -768
  90. bl_ui/properties_data_metaball/__init__.pyi +774 -171
  91. bl_ui/properties_data_modifier/__init__.pyi +1554 -329
  92. bl_ui/properties_data_pointcloud/__init__.pyi +821 -195
  93. bl_ui/properties_data_shaderfx/__init__.pyi +154 -35
  94. bl_ui/properties_data_speaker/__init__.pyi +782 -169
  95. bl_ui/properties_data_volume/__init__.pyi +1243 -282
  96. bl_ui/properties_freestyle/__init__.pyi +4071 -1031
  97. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -484
  98. bl_ui/properties_mask_common/__init__.pyi +1256 -250
  99. bl_ui/properties_material/__init__.pyi +2351 -543
  100. bl_ui/properties_material_gpencil/__init__.pyi +1590 -366
  101. bl_ui/properties_object/__init__.pyi +2179 -513
  102. bl_ui/properties_output/__init__.pyi +2956 -706
  103. bl_ui/properties_paint_common/__init__.pyi +947 -141
  104. bl_ui/properties_particle/__init__.pyi +8322 -1971
  105. bl_ui/properties_physics_cloth/__init__.pyi +2254 -509
  106. bl_ui/properties_physics_common/__init__.pyi +200 -45
  107. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -966
  108. bl_ui/properties_physics_field/__init__.pyi +1695 -365
  109. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1281
  110. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -33
  111. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -279
  112. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -484
  113. bl_ui/properties_physics_softbody/__init__.pyi +2394 -543
  114. bl_ui/properties_render/__init__.pyi +8312 -1934
  115. bl_ui/properties_scene/__init__.pyi +2211 -540
  116. bl_ui/properties_texture/__init__.pyi +4185 -1014
  117. bl_ui/properties_view_layer/__init__.pyi +2803 -665
  118. bl_ui/properties_workspace/__init__.pyi +626 -149
  119. bl_ui/properties_world/__init__.pyi +1092 -235
  120. bl_ui/space_clip/__init__.pyi +11475 -2806
  121. bl_ui/space_console/__init__.pyi +967 -203
  122. bl_ui/space_dopesheet/__init__.pyi +4260 -967
  123. bl_ui/space_filebrowser/__init__.pyi +4852 -1188
  124. bl_ui/space_graph/__init__.pyi +3251 -703
  125. bl_ui/space_image/__init__.pyi +12218 -2968
  126. bl_ui/space_info/__init__.pyi +964 -201
  127. bl_ui/space_nla/__init__.pyi +2756 -585
  128. bl_ui/space_node/__init__.pyi +5661 -1266
  129. bl_ui/space_outliner/__init__.pyi +2294 -479
  130. bl_ui/space_properties/__init__.pyi +417 -93
  131. bl_ui/space_sequencer/__init__.pyi +12436 -3010
  132. bl_ui/space_spreadsheet/__init__.pyi +184 -37
  133. bl_ui/space_statusbar/__init__.pyi +135 -31
  134. bl_ui/space_text/__init__.pyi +2556 -543
  135. bl_ui/space_time/__init__.pyi +1151 -244
  136. bl_ui/space_toolsystem_common/__init__.pyi +368 -67
  137. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -229
  138. bl_ui/space_topbar/__init__.pyi +4214 -888
  139. bl_ui/space_userpref/__init__.pyi +13920 -3468
  140. bl_ui/space_view3d/__init__.pyi +42751 -9613
  141. bl_ui/space_view3d_toolbar/__init__.pyi +16379 -3860
  142. bl_ui/utils/__init__.pyi +42 -5
  143. bl_ui_utils/__init__.pyi +0 -1
  144. bl_ui_utils/bug_report_url/__init__.pyi +4 -2
  145. bl_ui_utils/layout/__init__.pyi +4 -2
  146. blend_render_info/__init__.pyi +13 -4
  147. blf/__init__.pyi +15 -18
  148. bmesh/__init__.pyi +18 -18
  149. bmesh/geometry/__init__.pyi +5 -6
  150. bmesh/ops/__init__.pyi +1337 -1158
  151. bmesh/types/__init__.pyi +464 -374
  152. bmesh/utils/__init__.pyi +64 -70
  153. bpy/__init__.pyi +6 -7
  154. bpy/app/__init__.pyi +36 -38
  155. bpy/app/handlers/__init__.pyi +37 -38
  156. bpy/app/icons/__init__.pyi +8 -11
  157. bpy/app/timers/__init__.pyi +18 -17
  158. bpy/app/translations/__init__.pyi +32 -30
  159. bpy/msgbus/__init__.pyi +25 -20
  160. bpy/ops/__init__.pyi +63 -64
  161. bpy/ops/action/__init__.pyi +408 -436
  162. bpy/ops/anim/__init__.pyi +459 -577
  163. bpy/ops/armature/__init__.pyi +396 -498
  164. bpy/ops/asset/__init__.pyi +187 -213
  165. bpy/ops/boid/__init__.pyi +50 -68
  166. bpy/ops/brush/__init__.pyi +72 -97
  167. bpy/ops/buttons/__init__.pyi +202 -193
  168. bpy/ops/cachefile/__init__.pyi +198 -188
  169. bpy/ops/camera/__init__.pyi +24 -31
  170. bpy/ops/clip/__init__.pyi +1021 -1082
  171. bpy/ops/cloth/__init__.pyi +11 -15
  172. bpy/ops/collection/__init__.pyi +36 -51
  173. bpy/ops/console/__init__.pyi +155 -209
  174. bpy/ops/constraint/__init__.pyi +286 -254
  175. bpy/ops/curve/__init__.pyi +597 -659
  176. bpy/ops/curves/__init__.pyi +191 -225
  177. bpy/ops/cycles/__init__.pyi +21 -30
  178. bpy/ops/dpaint/__init__.pyi +34 -47
  179. bpy/ops/ed/__init__.pyi +160 -176
  180. bpy/ops/export_anim/__init__.pyi +51 -34
  181. bpy/ops/export_mesh/__init__.pyi +47 -45
  182. bpy/ops/export_scene/__init__.pyi +659 -504
  183. bpy/ops/file/__init__.pyi +469 -474
  184. bpy/ops/fluid/__init__.pyi +89 -119
  185. bpy/ops/font/__init__.pyi +325 -361
  186. bpy/ops/geometry/__init__.pyi +86 -114
  187. bpy/ops/gizmogroup/__init__.pyi +22 -28
  188. bpy/ops/gpencil/__init__.pyi +1900 -1976
  189. bpy/ops/graph/__init__.pyi +875 -894
  190. bpy/ops/grease_pencil/__init__.pyi +572 -508
  191. bpy/ops/image/__init__.pyi +805 -855
  192. bpy/ops/import_anim/__init__.pyi +66 -46
  193. bpy/ops/import_curve/__init__.pyi +7 -11
  194. bpy/ops/import_mesh/__init__.pyi +19 -25
  195. bpy/ops/import_scene/__init__.pyi +164 -147
  196. bpy/ops/info/__init__.pyi +88 -85
  197. bpy/ops/lattice/__init__.pyi +86 -90
  198. bpy/ops/marker/__init__.pyi +135 -146
  199. bpy/ops/mask/__init__.pyi +372 -436
  200. bpy/ops/material/__init__.pyi +18 -25
  201. bpy/ops/mball/__init__.pyi +93 -99
  202. bpy/ops/mesh/__init__.pyi +2525 -2664
  203. bpy/ops/nla/__init__.pyi +398 -455
  204. bpy/ops/node/__init__.pyi +1015 -1207
  205. bpy/ops/object/__init__.pyi +3423 -3390
  206. bpy/ops/outliner/__init__.pyi +667 -685
  207. bpy/ops/paint/__init__.pyi +719 -672
  208. bpy/ops/paintcurve/__init__.pyi +64 -85
  209. bpy/ops/palette/__init__.pyi +48 -67
  210. bpy/ops/particle/__init__.pyi +323 -367
  211. bpy/ops/pose/__init__.pyi +569 -474
  212. bpy/ops/poselib/__init__.pyi +77 -100
  213. bpy/ops/preferences/__init__.pyi +460 -512
  214. bpy/ops/ptcache/__init__.pyi +46 -63
  215. bpy/ops/render/__init__.pyi +121 -155
  216. bpy/ops/rigidbody/__init__.pyi +148 -143
  217. bpy/ops/scene/__init__.pyi +336 -380
  218. bpy/ops/screen/__init__.pyi +454 -530
  219. bpy/ops/script/__init__.pyi +19 -28
  220. bpy/ops/sculpt/__init__.pyi +734 -587
  221. bpy/ops/sculpt_curves/__init__.pyi +51 -56
  222. bpy/ops/sequencer/__init__.pyi +1617 -1500
  223. bpy/ops/sound/__init__.pyi +392 -315
  224. bpy/ops/spreadsheet/__init__.pyi +31 -42
  225. bpy/ops/surface/__init__.pyi +198 -163
  226. bpy/ops/text/__init__.pyi +479 -545
  227. bpy/ops/text_editor/__init__.pyi +11 -15
  228. bpy/ops/texture/__init__.pyi +26 -36
  229. bpy/ops/transform/__init__.pyi +825 -941
  230. bpy/ops/ui/__init__.pyi +246 -295
  231. bpy/ops/uilist/__init__.pyi +34 -38
  232. bpy/ops/uv/__init__.pyi +912 -824
  233. bpy/ops/view2d/__init__.pyi +157 -197
  234. bpy/ops/view3d/__init__.pyi +777 -878
  235. bpy/ops/wm/__init__.pyi +4102 -3595
  236. bpy/ops/workspace/__init__.pyi +42 -58
  237. bpy/ops/world/__init__.pyi +6 -9
  238. bpy/path/__init__.pyi +166 -109
  239. bpy/props/__init__.pyi +478 -395
  240. bpy/types/__init__.pyi +87194 -81467
  241. bpy/utils/__init__.pyi +325 -169
  242. bpy/utils/previews/__init__.pyi +108 -21
  243. bpy/utils/units/__init__.pyi +37 -39
  244. bpy_extras/__init__.pyi +4 -9
  245. bpy_extras/anim_utils/__init__.pyi +25 -55
  246. bpy_extras/asset_utils/__init__.pyi +3 -13
  247. bpy_extras/id_map_utils/__init__.pyi +1 -4
  248. bpy_extras/image_utils/__init__.pyi +33 -23
  249. bpy_extras/io_utils/__init__.pyi +116 -66
  250. bpy_extras/keyconfig_utils/__init__.pyi +5 -3
  251. bpy_extras/mesh_utils/__init__.pyi +42 -34
  252. bpy_extras/node_utils/__init__.pyi +4 -4
  253. bpy_extras/object_utils/__init__.pyi +58 -43
  254. bpy_extras/view3d_utils/__init__.pyi +64 -63
  255. bpy_restrict_state/__init__.pyi +14 -2
  256. bpy_types/__init__.pyi +3873 -998
  257. console_python/__init__.pyi +41 -8
  258. console_shell/__init__.pyi +24 -6
  259. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  260. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  261. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  262. freestyle/__init__.pyi +4 -5
  263. freestyle/chainingiterators/__init__.pyi +229 -73
  264. freestyle/functions/__init__.pyi +624 -402
  265. freestyle/predicates/__init__.pyi +381 -169
  266. freestyle/shaders/__init__.pyi +424 -155
  267. freestyle/types/__init__.pyi +1572 -726
  268. freestyle/utils/ContextFunctions/__init__.pyi +54 -43
  269. freestyle/utils/__init__.pyi +67 -31
  270. gpu/__init__.pyi +3 -4
  271. gpu/capabilities/__init__.pyi +57 -37
  272. gpu/matrix/__init__.pyi +14 -17
  273. gpu/platform/__init__.pyi +5 -6
  274. gpu/select/__init__.pyi +2 -5
  275. gpu/shader/__init__.pyi +14 -12
  276. gpu/state/__init__.pyi +48 -62
  277. gpu/texture/__init__.pyi +7 -7
  278. gpu/types/__init__.pyi +670 -229
  279. gpu_extras/__init__.pyi +1 -2
  280. gpu_extras/batch/__init__.pyi +27 -6
  281. gpu_extras/presets/__init__.pyi +67 -27
  282. graphviz_export/__init__.pyi +9 -3
  283. idprop/__init__.pyi +0 -1
  284. idprop/types/__init__.pyi +42 -13
  285. imbuf/__init__.pyi +6 -10
  286. imbuf/types/__init__.pyi +8 -16
  287. keyingsets_builtins/__init__.pyi +3149 -702
  288. keyingsets_utils/__init__.pyi +69 -15
  289. mathutils/__init__.pyi +951 -876
  290. mathutils/bvhtree/__init__.pyi +47 -48
  291. mathutils/geometry/__init__.pyi +237 -242
  292. mathutils/interpolate/__init__.pyi +3 -6
  293. mathutils/kdtree/__init__.pyi +23 -26
  294. mathutils/noise/__init__.pyi +50 -51
  295. nodeitems_builtins/__init__.pyi +50 -11
  296. nodeitems_utils/__init__.pyi +58 -11
  297. rna_info/__init__.pyi +230 -27
  298. rna_keymap_ui/__init__.pyi +29 -7
  299. rna_prop_ui/__init__.pyi +69 -13
  300. rna_xml/__init__.pyi +29 -7
  301. sys_info/__init__.pyi +4 -2
  302. bpy_extras/bmesh_utils/__init__.pyi +0 -7
  303. bpy_extras/extensions/__init__.pyi +0 -5
  304. bpy_extras/extensions/junction_module/__init__.pyi +0 -13
  305. bpy_extras/node_shader_utils/__init__.pyi +0 -132
  306. bpy_extras/wm_utils/__init__.pyi +0 -5
  307. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -30
  308. fake_bpy_module-20240210.dist-info/RECORD +0 -349
  309. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi CHANGED
@@ -1,179 +1,193 @@
1
- import sys
2
1
  import typing
3
- import bpy.types
4
2
  import bl_operators.node
5
3
  import bpy.ops.transform
4
+ import bpy.types
6
5
 
7
6
  GenericType = typing.TypeVar("GenericType")
8
7
 
9
8
  def add_collection(
10
- override_context: typing.Optional[
11
- typing.Union[typing.Dict, "bpy.types.Context"]
12
- ] = None,
13
- execution_context: typing.Optional[typing.Union[str, int]] = None,
14
- undo: typing.Optional[bool] = None,
15
- *,
9
+ override_context: typing.Union[dict, bpy.types.Context] = None,
10
+ execution_context: typing.Union[str, int] = None,
11
+ undo: bool = None,
16
12
  name: typing.Union[str, typing.Any] = "",
17
- session_uid: typing.Optional[typing.Any] = 0,
13
+ session_uid: typing.Any = 0,
18
14
  ):
19
15
  """Add a collection info node to the current node editor
20
16
 
21
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
22
- :type execution_context: typing.Optional[typing.Union[str, int]]
23
- :type undo: typing.Optional[bool]
17
+ :type override_context: typing.Union[dict, bpy.types.Context]
18
+ :type execution_context: typing.Union[str, int]
19
+ :type undo: bool
24
20
  :param name: Name, Name of the data-block to use by the operator
25
21
  :type name: typing.Union[str, typing.Any]
26
22
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
27
- :type session_uid: typing.Optional[typing.Any]
23
+ :type session_uid: typing.Any
28
24
  """
29
25
 
30
26
  ...
31
27
 
32
28
  def add_file(
33
- override_context: typing.Optional[
34
- typing.Union[typing.Dict, "bpy.types.Context"]
35
- ] = None,
36
- execution_context: typing.Optional[typing.Union[str, int]] = None,
37
- undo: typing.Optional[bool] = None,
38
- *,
29
+ override_context: typing.Union[dict, bpy.types.Context] = None,
30
+ execution_context: typing.Union[str, int] = None,
31
+ undo: bool = None,
39
32
  filepath: typing.Union[str, typing.Any] = "",
40
- hide_props_region: typing.Optional[typing.Union[bool, typing.Any]] = True,
41
- check_existing: typing.Optional[typing.Union[bool, typing.Any]] = False,
42
- filter_blender: typing.Optional[typing.Union[bool, typing.Any]] = False,
43
- filter_backup: typing.Optional[typing.Union[bool, typing.Any]] = False,
44
- filter_image: typing.Optional[typing.Union[bool, typing.Any]] = True,
45
- filter_movie: typing.Optional[typing.Union[bool, typing.Any]] = True,
46
- filter_python: typing.Optional[typing.Union[bool, typing.Any]] = False,
47
- filter_font: typing.Optional[typing.Union[bool, typing.Any]] = False,
48
- filter_sound: typing.Optional[typing.Union[bool, typing.Any]] = False,
49
- filter_text: typing.Optional[typing.Union[bool, typing.Any]] = False,
50
- filter_archive: typing.Optional[typing.Union[bool, typing.Any]] = False,
51
- filter_btx: typing.Optional[typing.Union[bool, typing.Any]] = False,
52
- filter_collada: typing.Optional[typing.Union[bool, typing.Any]] = False,
53
- filter_alembic: typing.Optional[typing.Union[bool, typing.Any]] = False,
54
- filter_usd: typing.Optional[typing.Union[bool, typing.Any]] = False,
55
- filter_obj: typing.Optional[typing.Union[bool, typing.Any]] = False,
56
- filter_volume: typing.Optional[typing.Union[bool, typing.Any]] = False,
57
- filter_folder: typing.Optional[typing.Union[bool, typing.Any]] = True,
58
- filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]] = False,
59
- filemode: typing.Optional[typing.Any] = 9,
60
- relative_path: typing.Optional[typing.Union[bool, typing.Any]] = True,
61
- show_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
62
- use_multiview: typing.Optional[typing.Union[bool, typing.Any]] = False,
63
- display_type: typing.Optional[typing.Any] = "DEFAULT",
64
- sort_method: typing.Optional[typing.Any] = "",
33
+ hide_props_region: typing.Union[bool, typing.Any] = True,
34
+ check_existing: typing.Union[bool, typing.Any] = False,
35
+ filter_blender: typing.Union[bool, typing.Any] = False,
36
+ filter_backup: typing.Union[bool, typing.Any] = False,
37
+ filter_image: typing.Union[bool, typing.Any] = True,
38
+ filter_movie: typing.Union[bool, typing.Any] = True,
39
+ filter_python: typing.Union[bool, typing.Any] = False,
40
+ filter_font: typing.Union[bool, typing.Any] = False,
41
+ filter_sound: typing.Union[bool, typing.Any] = False,
42
+ filter_text: typing.Union[bool, typing.Any] = False,
43
+ filter_archive: typing.Union[bool, typing.Any] = False,
44
+ filter_btx: typing.Union[bool, typing.Any] = False,
45
+ filter_collada: typing.Union[bool, typing.Any] = False,
46
+ filter_alembic: typing.Union[bool, typing.Any] = False,
47
+ filter_usd: typing.Union[bool, typing.Any] = False,
48
+ filter_obj: typing.Union[bool, typing.Any] = False,
49
+ filter_volume: typing.Union[bool, typing.Any] = False,
50
+ filter_folder: typing.Union[bool, typing.Any] = True,
51
+ filter_blenlib: typing.Union[bool, typing.Any] = False,
52
+ filemode: typing.Any = 9,
53
+ relative_path: typing.Union[bool, typing.Any] = True,
54
+ show_multiview: typing.Union[bool, typing.Any] = False,
55
+ use_multiview: typing.Union[bool, typing.Any] = False,
56
+ display_type: typing.Any = "DEFAULT",
57
+ sort_method: typing.Any = "",
65
58
  name: typing.Union[str, typing.Any] = "",
66
- session_uid: typing.Optional[typing.Any] = 0,
59
+ session_uid: typing.Any = 0,
67
60
  ):
68
61
  """Add a file node to the current node editor
69
62
 
70
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
71
- :type execution_context: typing.Optional[typing.Union[str, int]]
72
- :type undo: typing.Optional[bool]
73
- :param filepath: File Path, Path to file
74
- :type filepath: typing.Union[str, typing.Any]
75
- :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
76
- :type hide_props_region: typing.Optional[typing.Union[bool, typing.Any]]
77
- :param check_existing: Check Existing, Check and warn on overwriting existing files
78
- :type check_existing: typing.Optional[typing.Union[bool, typing.Any]]
79
- :param filter_blender: Filter .blend files
80
- :type filter_blender: typing.Optional[typing.Union[bool, typing.Any]]
81
- :param filter_backup: Filter .blend files
82
- :type filter_backup: typing.Optional[typing.Union[bool, typing.Any]]
83
- :param filter_image: Filter image files
84
- :type filter_image: typing.Optional[typing.Union[bool, typing.Any]]
85
- :param filter_movie: Filter movie files
86
- :type filter_movie: typing.Optional[typing.Union[bool, typing.Any]]
87
- :param filter_python: Filter Python files
88
- :type filter_python: typing.Optional[typing.Union[bool, typing.Any]]
89
- :param filter_font: Filter font files
90
- :type filter_font: typing.Optional[typing.Union[bool, typing.Any]]
91
- :param filter_sound: Filter sound files
92
- :type filter_sound: typing.Optional[typing.Union[bool, typing.Any]]
93
- :param filter_text: Filter text files
94
- :type filter_text: typing.Optional[typing.Union[bool, typing.Any]]
95
- :param filter_archive: Filter archive files
96
- :type filter_archive: typing.Optional[typing.Union[bool, typing.Any]]
97
- :param filter_btx: Filter btx files
98
- :type filter_btx: typing.Optional[typing.Union[bool, typing.Any]]
99
- :param filter_collada: Filter COLLADA files
100
- :type filter_collada: typing.Optional[typing.Union[bool, typing.Any]]
101
- :param filter_alembic: Filter Alembic files
102
- :type filter_alembic: typing.Optional[typing.Union[bool, typing.Any]]
103
- :param filter_usd: Filter USD files
104
- :type filter_usd: typing.Optional[typing.Union[bool, typing.Any]]
105
- :param filter_obj: Filter OBJ files
106
- :type filter_obj: typing.Optional[typing.Union[bool, typing.Any]]
107
- :param filter_volume: Filter OpenVDB volume files
108
- :type filter_volume: typing.Optional[typing.Union[bool, typing.Any]]
109
- :param filter_folder: Filter folders
110
- :type filter_folder: typing.Optional[typing.Union[bool, typing.Any]]
111
- :param filter_blenlib: Filter Blender IDs
112
- :type filter_blenlib: typing.Optional[typing.Union[bool, typing.Any]]
113
- :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
114
- :type filemode: typing.Optional[typing.Any]
115
- :param relative_path: Relative Path, Select the file relative to the blend file
116
- :type relative_path: typing.Optional[typing.Union[bool, typing.Any]]
117
- :param show_multiview: Enable Multi-View
118
- :type show_multiview: typing.Optional[typing.Union[bool, typing.Any]]
119
- :param use_multiview: Use Multi-View
120
- :type use_multiview: typing.Optional[typing.Union[bool, typing.Any]]
121
- :param display_type: Display Type * ``DEFAULT`` Default -- Automatically determine display type for files. * ``LIST_VERTICAL`` Short List -- Display files as short list. * ``LIST_HORIZONTAL`` Long List -- Display files as a detailed list. * ``THUMBNAIL`` Thumbnails -- Display files as thumbnails.
122
- :type display_type: typing.Optional[typing.Any]
123
- :param sort_method: File sorting mode * ``DEFAULT`` Default -- Automatically determine sort method for files. * ``FILE_SORT_ALPHA`` Name -- Sort the file list alphabetically. * ``FILE_SORT_EXTENSION`` Extension -- Sort the file list by extension/type. * ``FILE_SORT_TIME`` Modified Date -- Sort files by modification time. * ``FILE_SORT_SIZE`` Size -- Sort files by size.
124
- :type sort_method: typing.Optional[typing.Any]
125
- :param name: Name, Name of the data-block to use by the operator
126
- :type name: typing.Union[str, typing.Any]
127
- :param session_uid: Session UID, Session UID of the data-block to use by the operator
128
- :type session_uid: typing.Optional[typing.Any]
63
+ :type override_context: typing.Union[dict, bpy.types.Context]
64
+ :type execution_context: typing.Union[str, int]
65
+ :type undo: bool
66
+ :param filepath: File Path, Path to file
67
+ :type filepath: typing.Union[str, typing.Any]
68
+ :param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
69
+ :type hide_props_region: typing.Union[bool, typing.Any]
70
+ :param check_existing: Check Existing, Check and warn on overwriting existing files
71
+ :type check_existing: typing.Union[bool, typing.Any]
72
+ :param filter_blender: Filter .blend files
73
+ :type filter_blender: typing.Union[bool, typing.Any]
74
+ :param filter_backup: Filter .blend files
75
+ :type filter_backup: typing.Union[bool, typing.Any]
76
+ :param filter_image: Filter image files
77
+ :type filter_image: typing.Union[bool, typing.Any]
78
+ :param filter_movie: Filter movie files
79
+ :type filter_movie: typing.Union[bool, typing.Any]
80
+ :param filter_python: Filter Python files
81
+ :type filter_python: typing.Union[bool, typing.Any]
82
+ :param filter_font: Filter font files
83
+ :type filter_font: typing.Union[bool, typing.Any]
84
+ :param filter_sound: Filter sound files
85
+ :type filter_sound: typing.Union[bool, typing.Any]
86
+ :param filter_text: Filter text files
87
+ :type filter_text: typing.Union[bool, typing.Any]
88
+ :param filter_archive: Filter archive files
89
+ :type filter_archive: typing.Union[bool, typing.Any]
90
+ :param filter_btx: Filter btx files
91
+ :type filter_btx: typing.Union[bool, typing.Any]
92
+ :param filter_collada: Filter COLLADA files
93
+ :type filter_collada: typing.Union[bool, typing.Any]
94
+ :param filter_alembic: Filter Alembic files
95
+ :type filter_alembic: typing.Union[bool, typing.Any]
96
+ :param filter_usd: Filter USD files
97
+ :type filter_usd: typing.Union[bool, typing.Any]
98
+ :param filter_obj: Filter OBJ files
99
+ :type filter_obj: typing.Union[bool, typing.Any]
100
+ :param filter_volume: Filter OpenVDB volume files
101
+ :type filter_volume: typing.Union[bool, typing.Any]
102
+ :param filter_folder: Filter folders
103
+ :type filter_folder: typing.Union[bool, typing.Any]
104
+ :param filter_blenlib: Filter Blender IDs
105
+ :type filter_blenlib: typing.Union[bool, typing.Any]
106
+ :param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
107
+ :type filemode: typing.Any
108
+ :param relative_path: Relative Path, Select the file relative to the blend file
109
+ :type relative_path: typing.Union[bool, typing.Any]
110
+ :param show_multiview: Enable Multi-View
111
+ :type show_multiview: typing.Union[bool, typing.Any]
112
+ :param use_multiview: Use Multi-View
113
+ :type use_multiview: typing.Union[bool, typing.Any]
114
+ :param display_type: Display Type
115
+
116
+ DEFAULT
117
+ Default -- Automatically determine display type for files.
118
+
119
+ LIST_VERTICAL
120
+ Short List -- Display files as short list.
121
+
122
+ LIST_HORIZONTAL
123
+ Long List -- Display files as a detailed list.
124
+
125
+ THUMBNAIL
126
+ Thumbnails -- Display files as thumbnails.
127
+ :type display_type: typing.Any
128
+ :param sort_method: File sorting mode
129
+
130
+ DEFAULT
131
+ Default -- Automatically determine sort method for files.
132
+
133
+ FILE_SORT_ALPHA
134
+ Name -- Sort the file list alphabetically.
135
+
136
+ FILE_SORT_EXTENSION
137
+ Extension -- Sort the file list by extension/type.
138
+
139
+ FILE_SORT_TIME
140
+ Modified Date -- Sort files by modification time.
141
+
142
+ FILE_SORT_SIZE
143
+ Size -- Sort files by size.
144
+ :type sort_method: typing.Any
145
+ :param name: Name, Name of the data-block to use by the operator
146
+ :type name: typing.Union[str, typing.Any]
147
+ :param session_uid: Session UID, Session UID of the data-block to use by the operator
148
+ :type session_uid: typing.Any
129
149
  """
130
150
 
131
151
  ...
132
152
 
133
153
  def add_group(
134
- override_context: typing.Optional[
135
- typing.Union[typing.Dict, "bpy.types.Context"]
136
- ] = None,
137
- execution_context: typing.Optional[typing.Union[str, int]] = None,
138
- undo: typing.Optional[bool] = None,
139
- *,
154
+ override_context: typing.Union[dict, bpy.types.Context] = None,
155
+ execution_context: typing.Union[str, int] = None,
156
+ undo: bool = None,
140
157
  name: typing.Union[str, typing.Any] = "",
141
- session_uid: typing.Optional[typing.Any] = 0,
142
- show_datablock_in_node: typing.Optional[typing.Union[bool, typing.Any]] = True,
158
+ session_uid: typing.Any = 0,
159
+ show_datablock_in_node: typing.Union[bool, typing.Any] = True,
143
160
  ):
144
161
  """Add an existing node group to the current node editor
145
162
 
146
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
147
- :type execution_context: typing.Optional[typing.Union[str, int]]
148
- :type undo: typing.Optional[bool]
163
+ :type override_context: typing.Union[dict, bpy.types.Context]
164
+ :type execution_context: typing.Union[str, int]
165
+ :type undo: bool
149
166
  :param name: Name, Name of the data-block to use by the operator
150
167
  :type name: typing.Union[str, typing.Any]
151
168
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
152
- :type session_uid: typing.Optional[typing.Any]
169
+ :type session_uid: typing.Any
153
170
  :param show_datablock_in_node: Show the datablock selector in the node
154
- :type show_datablock_in_node: typing.Optional[typing.Union[bool, typing.Any]]
171
+ :type show_datablock_in_node: typing.Union[bool, typing.Any]
155
172
  """
156
173
 
157
174
  ...
158
175
 
159
176
  def add_group_asset(
160
- override_context: typing.Optional[
161
- typing.Union[typing.Dict, "bpy.types.Context"]
162
- ] = None,
163
- execution_context: typing.Optional[typing.Union[str, int]] = None,
164
- undo: typing.Optional[bool] = None,
165
- *,
166
- asset_library_type: typing.Optional[typing.Union[str, int]] = "LOCAL",
177
+ override_context: typing.Union[dict, bpy.types.Context] = None,
178
+ execution_context: typing.Union[str, int] = None,
179
+ undo: bool = None,
180
+ asset_library_type: typing.Any = "LOCAL",
167
181
  asset_library_identifier: typing.Union[str, typing.Any] = "",
168
182
  relative_asset_identifier: typing.Union[str, typing.Any] = "",
169
183
  ):
170
184
  """Add a node group asset to the active node tree
171
185
 
172
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
173
- :type execution_context: typing.Optional[typing.Union[str, int]]
174
- :type undo: typing.Optional[bool]
186
+ :type override_context: typing.Union[dict, bpy.types.Context]
187
+ :type execution_context: typing.Union[str, int]
188
+ :type undo: bool
175
189
  :param asset_library_type: Asset Library Type
176
- :type asset_library_type: typing.Optional[typing.Union[str, int]]
190
+ :type asset_library_type: typing.Any
177
191
  :param asset_library_identifier: Asset Library Identifier
178
192
  :type asset_library_identifier: typing.Union[str, typing.Any]
179
193
  :param relative_asset_identifier: Relative Asset Identifier
@@ -183,73 +197,62 @@ def add_group_asset(
183
197
  ...
184
198
 
185
199
  def add_mask(
186
- override_context: typing.Optional[
187
- typing.Union[typing.Dict, "bpy.types.Context"]
188
- ] = None,
189
- execution_context: typing.Optional[typing.Union[str, int]] = None,
190
- undo: typing.Optional[bool] = None,
191
- *,
200
+ override_context: typing.Union[dict, bpy.types.Context] = None,
201
+ execution_context: typing.Union[str, int] = None,
202
+ undo: bool = None,
192
203
  name: typing.Union[str, typing.Any] = "",
193
- session_uid: typing.Optional[typing.Any] = 0,
204
+ session_uid: typing.Any = 0,
194
205
  ):
195
206
  """Add a mask node to the current node editor
196
207
 
197
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
198
- :type execution_context: typing.Optional[typing.Union[str, int]]
199
- :type undo: typing.Optional[bool]
208
+ :type override_context: typing.Union[dict, bpy.types.Context]
209
+ :type execution_context: typing.Union[str, int]
210
+ :type undo: bool
200
211
  :param name: Name, Name of the data-block to use by the operator
201
212
  :type name: typing.Union[str, typing.Any]
202
213
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
203
- :type session_uid: typing.Optional[typing.Any]
214
+ :type session_uid: typing.Any
204
215
  """
205
216
 
206
217
  ...
207
218
 
208
219
  def add_material(
209
- override_context: typing.Optional[
210
- typing.Union[typing.Dict, "bpy.types.Context"]
211
- ] = None,
212
- execution_context: typing.Optional[typing.Union[str, int]] = None,
213
- undo: typing.Optional[bool] = None,
214
- *,
220
+ override_context: typing.Union[dict, bpy.types.Context] = None,
221
+ execution_context: typing.Union[str, int] = None,
222
+ undo: bool = None,
215
223
  name: typing.Union[str, typing.Any] = "",
216
- session_uid: typing.Optional[typing.Any] = 0,
224
+ session_uid: typing.Any = 0,
217
225
  ):
218
226
  """Add a material node to the current node editor
219
227
 
220
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
221
- :type execution_context: typing.Optional[typing.Union[str, int]]
222
- :type undo: typing.Optional[bool]
228
+ :type override_context: typing.Union[dict, bpy.types.Context]
229
+ :type execution_context: typing.Union[str, int]
230
+ :type undo: bool
223
231
  :param name: Name, Name of the data-block to use by the operator
224
232
  :type name: typing.Union[str, typing.Any]
225
233
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
226
- :type session_uid: typing.Optional[typing.Any]
234
+ :type session_uid: typing.Any
227
235
  """
228
236
 
229
237
  ...
230
238
 
231
239
  def add_node(
232
- override_context: typing.Optional[
233
- typing.Union[typing.Dict, "bpy.types.Context"]
234
- ] = None,
235
- execution_context: typing.Optional[typing.Union[str, int]] = None,
236
- undo: typing.Optional[bool] = None,
237
- *,
238
- use_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
239
- settings: typing.Optional[
240
- bpy.types.bpy_prop_collection["bl_operators.node.NodeSetting"]
241
- ] = None,
240
+ override_context: typing.Union[dict, bpy.types.Context] = None,
241
+ execution_context: typing.Union[str, int] = None,
242
+ undo: bool = None,
243
+ use_transform: typing.Union[bool, typing.Any] = False,
244
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
242
245
  type: typing.Union[str, typing.Any] = "",
243
246
  ):
244
- """Add a node to the active tree :File: `startup/bl_operators/node.py\:142 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L142>`__
247
+ """Add a node to the active tree
245
248
 
246
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
247
- :type execution_context: typing.Optional[typing.Union[str, int]]
248
- :type undo: typing.Optional[bool]
249
+ :type override_context: typing.Union[dict, bpy.types.Context]
250
+ :type execution_context: typing.Union[str, int]
251
+ :type undo: bool
249
252
  :param use_transform: Use Transform, Start transform operator after inserting the node
250
- :type use_transform: typing.Optional[typing.Union[bool, typing.Any]]
253
+ :type use_transform: typing.Union[bool, typing.Any]
251
254
  :param settings: Settings, Settings to be applied on the newly created node
252
- :type settings: typing.Optional[bpy.types.bpy_prop_collection['bl_operators.node.NodeSetting']]
255
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
253
256
  :param type: Node Type, Node type
254
257
  :type type: typing.Union[str, typing.Any]
255
258
  """
@@ -257,1121 +260,975 @@ def add_node(
257
260
  ...
258
261
 
259
262
  def add_object(
260
- override_context: typing.Optional[
261
- typing.Union[typing.Dict, "bpy.types.Context"]
262
- ] = None,
263
- execution_context: typing.Optional[typing.Union[str, int]] = None,
264
- undo: typing.Optional[bool] = None,
265
- *,
263
+ override_context: typing.Union[dict, bpy.types.Context] = None,
264
+ execution_context: typing.Union[str, int] = None,
265
+ undo: bool = None,
266
266
  name: typing.Union[str, typing.Any] = "",
267
- session_uid: typing.Optional[typing.Any] = 0,
267
+ session_uid: typing.Any = 0,
268
268
  ):
269
269
  """Add an object info node to the current node editor
270
270
 
271
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
272
- :type execution_context: typing.Optional[typing.Union[str, int]]
273
- :type undo: typing.Optional[bool]
271
+ :type override_context: typing.Union[dict, bpy.types.Context]
272
+ :type execution_context: typing.Union[str, int]
273
+ :type undo: bool
274
274
  :param name: Name, Name of the data-block to use by the operator
275
275
  :type name: typing.Union[str, typing.Any]
276
276
  :param session_uid: Session UID, Session UID of the data-block to use by the operator
277
- :type session_uid: typing.Optional[typing.Any]
277
+ :type session_uid: typing.Any
278
278
  """
279
279
 
280
280
  ...
281
281
 
282
282
  def add_repeat_zone(
283
- override_context: typing.Optional[
284
- typing.Union[typing.Dict, "bpy.types.Context"]
285
- ] = None,
286
- execution_context: typing.Optional[typing.Union[str, int]] = None,
287
- undo: typing.Optional[bool] = None,
288
- *,
289
- use_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
290
- settings: typing.Optional[
291
- bpy.types.bpy_prop_collection["bl_operators.node.NodeSetting"]
292
- ] = None,
293
- offset: typing.Optional[typing.Any] = (150.0, 0.0),
294
- ):
295
- """Add a repeat zone that allows executing nodes a dynamic number of times :File: `startup/bl_operators/node.py\:168 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L168>`__
296
-
297
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
298
- :type execution_context: typing.Optional[typing.Union[str, int]]
299
- :type undo: typing.Optional[bool]
283
+ override_context: typing.Union[dict, bpy.types.Context] = None,
284
+ execution_context: typing.Union[str, int] = None,
285
+ undo: bool = None,
286
+ use_transform: typing.Union[bool, typing.Any] = False,
287
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
288
+ offset: typing.Any = (150.0, 0.0),
289
+ ):
290
+ """Add a repeat zone that allows executing nodes a dynamic number of times
291
+
292
+ :type override_context: typing.Union[dict, bpy.types.Context]
293
+ :type execution_context: typing.Union[str, int]
294
+ :type undo: bool
300
295
  :param use_transform: Use Transform, Start transform operator after inserting the node
301
- :type use_transform: typing.Optional[typing.Union[bool, typing.Any]]
296
+ :type use_transform: typing.Union[bool, typing.Any]
302
297
  :param settings: Settings, Settings to be applied on the newly created node
303
- :type settings: typing.Optional[bpy.types.bpy_prop_collection['bl_operators.node.NodeSetting']]
298
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
304
299
  :param offset: Offset, Offset of nodes from the cursor when added
305
- :type offset: typing.Optional[typing.Any]
300
+ :type offset: typing.Any
306
301
  """
307
302
 
308
303
  ...
309
304
 
310
305
  def add_reroute(
311
- override_context: typing.Optional[
312
- typing.Union[typing.Dict, "bpy.types.Context"]
313
- ] = None,
314
- execution_context: typing.Optional[typing.Union[str, int]] = None,
315
- undo: typing.Optional[bool] = None,
316
- *,
317
- path: typing.Optional[
318
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
319
- ] = None,
320
- cursor: typing.Optional[typing.Any] = 8,
306
+ override_context: typing.Union[dict, bpy.types.Context] = None,
307
+ execution_context: typing.Union[str, int] = None,
308
+ undo: bool = None,
309
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
310
+ cursor: typing.Any = 8,
321
311
  ):
322
312
  """Add a reroute node
323
313
 
324
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
325
- :type execution_context: typing.Optional[typing.Union[str, int]]
326
- :type undo: typing.Optional[bool]
314
+ :type override_context: typing.Union[dict, bpy.types.Context]
315
+ :type execution_context: typing.Union[str, int]
316
+ :type undo: bool
327
317
  :param path: Path
328
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
318
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
329
319
  :param cursor: Cursor
330
- :type cursor: typing.Optional[typing.Any]
320
+ :type cursor: typing.Any
331
321
  """
332
322
 
333
323
  ...
334
324
 
335
325
  def add_simulation_zone(
336
- override_context: typing.Optional[
337
- typing.Union[typing.Dict, "bpy.types.Context"]
338
- ] = None,
339
- execution_context: typing.Optional[typing.Union[str, int]] = None,
340
- undo: typing.Optional[bool] = None,
341
- *,
342
- use_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
343
- settings: typing.Optional[
344
- bpy.types.bpy_prop_collection["bl_operators.node.NodeSetting"]
345
- ] = None,
346
- offset: typing.Optional[typing.Any] = (150.0, 0.0),
347
- ):
348
- """Add simulation zone input and output nodes to the active tree :File: `startup/bl_operators/node.py\:168 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L168>`__
349
-
350
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
351
- :type execution_context: typing.Optional[typing.Union[str, int]]
352
- :type undo: typing.Optional[bool]
326
+ override_context: typing.Union[dict, bpy.types.Context] = None,
327
+ execution_context: typing.Union[str, int] = None,
328
+ undo: bool = None,
329
+ use_transform: typing.Union[bool, typing.Any] = False,
330
+ settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
331
+ offset: typing.Any = (150.0, 0.0),
332
+ ):
333
+ """Add simulation zone input and output nodes to the active tree
334
+
335
+ :type override_context: typing.Union[dict, bpy.types.Context]
336
+ :type execution_context: typing.Union[str, int]
337
+ :type undo: bool
353
338
  :param use_transform: Use Transform, Start transform operator after inserting the node
354
- :type use_transform: typing.Optional[typing.Union[bool, typing.Any]]
339
+ :type use_transform: typing.Union[bool, typing.Any]
355
340
  :param settings: Settings, Settings to be applied on the newly created node
356
- :type settings: typing.Optional[bpy.types.bpy_prop_collection['bl_operators.node.NodeSetting']]
341
+ :type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
357
342
  :param offset: Offset, Offset of nodes from the cursor when added
358
- :type offset: typing.Optional[typing.Any]
343
+ :type offset: typing.Any
359
344
  """
360
345
 
361
346
  ...
362
347
 
363
348
  def attach(
364
- override_context: typing.Optional[
365
- typing.Union[typing.Dict, "bpy.types.Context"]
366
- ] = None,
367
- execution_context: typing.Optional[typing.Union[str, int]] = None,
368
- undo: typing.Optional[bool] = None,
349
+ override_context: typing.Union[dict, bpy.types.Context] = None,
350
+ execution_context: typing.Union[str, int] = None,
351
+ undo: bool = None,
369
352
  ):
370
353
  """Attach active node to a frame
371
354
 
372
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
373
- :type execution_context: typing.Optional[typing.Union[str, int]]
374
- :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
375
358
  """
376
359
 
377
360
  ...
378
361
 
379
362
  def backimage_fit(
380
- override_context: typing.Optional[
381
- typing.Union[typing.Dict, "bpy.types.Context"]
382
- ] = None,
383
- execution_context: typing.Optional[typing.Union[str, int]] = None,
384
- undo: typing.Optional[bool] = None,
363
+ override_context: typing.Union[dict, bpy.types.Context] = None,
364
+ execution_context: typing.Union[str, int] = None,
365
+ undo: bool = None,
385
366
  ):
386
367
  """Fit the background image to the view
387
368
 
388
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
389
- :type execution_context: typing.Optional[typing.Union[str, int]]
390
- :type undo: typing.Optional[bool]
369
+ :type override_context: typing.Union[dict, bpy.types.Context]
370
+ :type execution_context: typing.Union[str, int]
371
+ :type undo: bool
391
372
  """
392
373
 
393
374
  ...
394
375
 
395
376
  def backimage_move(
396
- override_context: typing.Optional[
397
- typing.Union[typing.Dict, "bpy.types.Context"]
398
- ] = None,
399
- execution_context: typing.Optional[typing.Union[str, int]] = None,
400
- undo: typing.Optional[bool] = None,
377
+ override_context: typing.Union[dict, bpy.types.Context] = None,
378
+ execution_context: typing.Union[str, int] = None,
379
+ undo: bool = None,
401
380
  ):
402
381
  """Move node backdrop
403
382
 
404
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
405
- :type execution_context: typing.Optional[typing.Union[str, int]]
406
- :type undo: typing.Optional[bool]
383
+ :type override_context: typing.Union[dict, bpy.types.Context]
384
+ :type execution_context: typing.Union[str, int]
385
+ :type undo: bool
407
386
  """
408
387
 
409
388
  ...
410
389
 
411
390
  def backimage_sample(
412
- override_context: typing.Optional[
413
- typing.Union[typing.Dict, "bpy.types.Context"]
414
- ] = None,
415
- execution_context: typing.Optional[typing.Union[str, int]] = None,
416
- undo: typing.Optional[bool] = None,
391
+ override_context: typing.Union[dict, bpy.types.Context] = None,
392
+ execution_context: typing.Union[str, int] = None,
393
+ undo: bool = None,
417
394
  ):
418
395
  """Use mouse to sample background image
419
396
 
420
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
421
- :type execution_context: typing.Optional[typing.Union[str, int]]
422
- :type undo: typing.Optional[bool]
397
+ :type override_context: typing.Union[dict, bpy.types.Context]
398
+ :type execution_context: typing.Union[str, int]
399
+ :type undo: bool
423
400
  """
424
401
 
425
402
  ...
426
403
 
427
404
  def backimage_zoom(
428
- override_context: typing.Optional[
429
- typing.Union[typing.Dict, "bpy.types.Context"]
430
- ] = None,
431
- execution_context: typing.Optional[typing.Union[str, int]] = None,
432
- undo: typing.Optional[bool] = None,
433
- *,
434
- factor: typing.Optional[typing.Any] = 1.2,
405
+ override_context: typing.Union[dict, bpy.types.Context] = None,
406
+ execution_context: typing.Union[str, int] = None,
407
+ undo: bool = None,
408
+ factor: typing.Any = 1.2,
435
409
  ):
436
410
  """Zoom in/out the background image
437
411
 
438
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
439
- :type execution_context: typing.Optional[typing.Union[str, int]]
440
- :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
441
415
  :param factor: Factor
442
- :type factor: typing.Optional[typing.Any]
416
+ :type factor: typing.Any
443
417
  """
444
418
 
445
419
  ...
446
420
 
447
421
  def bake_node_item_add(
448
- override_context: typing.Optional[
449
- typing.Union[typing.Dict, "bpy.types.Context"]
450
- ] = None,
451
- execution_context: typing.Optional[typing.Union[str, int]] = None,
452
- undo: typing.Optional[bool] = None,
422
+ override_context: typing.Union[dict, bpy.types.Context] = None,
423
+ execution_context: typing.Union[str, int] = None,
424
+ undo: bool = None,
453
425
  ):
454
- """Add a bake item to the bake node :File: `startup/bl_operators/geometry_nodes.py\:360 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L360>`__
426
+ """Add a bake item to the bake node
455
427
 
456
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
457
- :type execution_context: typing.Optional[typing.Union[str, int]]
458
- :type undo: typing.Optional[bool]
428
+ :type override_context: typing.Union[dict, bpy.types.Context]
429
+ :type execution_context: typing.Union[str, int]
430
+ :type undo: bool
459
431
  """
460
432
 
461
433
  ...
462
434
 
463
435
  def bake_node_item_move(
464
- override_context: typing.Optional[
465
- typing.Union[typing.Dict, "bpy.types.Context"]
466
- ] = None,
467
- execution_context: typing.Optional[typing.Union[str, int]] = None,
468
- undo: typing.Optional[bool] = None,
469
- *,
470
- direction: typing.Optional[typing.Any] = "UP",
471
- ):
472
- """Move a bake item up or down in the list :File: `startup/bl_operators/geometry_nodes.py\:406 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L406>`__
473
-
474
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
475
- :type execution_context: typing.Optional[typing.Union[str, int]]
476
- :type undo: typing.Optional[bool]
436
+ override_context: typing.Union[dict, bpy.types.Context] = None,
437
+ execution_context: typing.Union[str, int] = None,
438
+ undo: bool = None,
439
+ direction: typing.Any = "UP",
440
+ ):
441
+ """Move a bake item up or down in the list
442
+
443
+ :type override_context: typing.Union[dict, bpy.types.Context]
444
+ :type execution_context: typing.Union[str, int]
445
+ :type undo: bool
477
446
  :param direction: Direction
478
- :type direction: typing.Optional[typing.Any]
447
+ :type direction: typing.Any
479
448
  """
480
449
 
481
450
  ...
482
451
 
483
452
  def bake_node_item_remove(
484
- override_context: typing.Optional[
485
- typing.Union[typing.Dict, "bpy.types.Context"]
486
- ] = None,
487
- execution_context: typing.Optional[typing.Union[str, int]] = None,
488
- undo: typing.Optional[bool] = None,
453
+ override_context: typing.Union[dict, bpy.types.Context] = None,
454
+ execution_context: typing.Union[str, int] = None,
455
+ undo: bool = None,
489
456
  ):
490
- """Remove a bake item from the bake node :File: `startup/bl_operators/geometry_nodes.py\:385 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L385>`__
457
+ """Remove a bake item from the bake node
491
458
 
492
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
493
- :type execution_context: typing.Optional[typing.Union[str, int]]
494
- :type undo: typing.Optional[bool]
459
+ :type override_context: typing.Union[dict, bpy.types.Context]
460
+ :type execution_context: typing.Union[str, int]
461
+ :type undo: bool
495
462
  """
496
463
 
497
464
  ...
498
465
 
499
466
  def clear_viewer_border(
500
- override_context: typing.Optional[
501
- typing.Union[typing.Dict, "bpy.types.Context"]
502
- ] = None,
503
- execution_context: typing.Optional[typing.Union[str, int]] = None,
504
- undo: typing.Optional[bool] = None,
467
+ override_context: typing.Union[dict, bpy.types.Context] = None,
468
+ execution_context: typing.Union[str, int] = None,
469
+ undo: bool = None,
505
470
  ):
506
471
  """Clear the boundaries for viewer operations
507
472
 
508
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
509
- :type execution_context: typing.Optional[typing.Union[str, int]]
510
- :type undo: typing.Optional[bool]
473
+ :type override_context: typing.Union[dict, bpy.types.Context]
474
+ :type execution_context: typing.Union[str, int]
475
+ :type undo: bool
511
476
  """
512
477
 
513
478
  ...
514
479
 
515
480
  def clipboard_copy(
516
- override_context: typing.Optional[
517
- typing.Union[typing.Dict, "bpy.types.Context"]
518
- ] = None,
519
- execution_context: typing.Optional[typing.Union[str, int]] = None,
520
- undo: typing.Optional[bool] = None,
481
+ override_context: typing.Union[dict, bpy.types.Context] = None,
482
+ execution_context: typing.Union[str, int] = None,
483
+ undo: bool = None,
521
484
  ):
522
485
  """Copy the selected nodes to the internal clipboard
523
486
 
524
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
525
- :type execution_context: typing.Optional[typing.Union[str, int]]
526
- :type undo: typing.Optional[bool]
487
+ :type override_context: typing.Union[dict, bpy.types.Context]
488
+ :type execution_context: typing.Union[str, int]
489
+ :type undo: bool
527
490
  """
528
491
 
529
492
  ...
530
493
 
531
494
  def clipboard_paste(
532
- override_context: typing.Optional[
533
- typing.Union[typing.Dict, "bpy.types.Context"]
534
- ] = None,
535
- execution_context: typing.Optional[typing.Union[str, int]] = None,
536
- undo: typing.Optional[bool] = None,
537
- *,
538
- offset: typing.Optional[typing.Any] = (0.0, 0.0),
495
+ override_context: typing.Union[dict, bpy.types.Context] = None,
496
+ execution_context: typing.Union[str, int] = None,
497
+ undo: bool = None,
498
+ offset: typing.Any = (0.0, 0.0),
539
499
  ):
540
500
  """Paste nodes from the internal clipboard to the active node tree
541
501
 
542
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
543
- :type execution_context: typing.Optional[typing.Union[str, int]]
544
- :type undo: typing.Optional[bool]
502
+ :type override_context: typing.Union[dict, bpy.types.Context]
503
+ :type execution_context: typing.Union[str, int]
504
+ :type undo: bool
545
505
  :param offset: Location, The 2D view location for the center of the new nodes, or unchanged if not set
546
- :type offset: typing.Optional[typing.Any]
506
+ :type offset: typing.Any
547
507
  """
548
508
 
549
509
  ...
550
510
 
551
511
  def collapse_hide_unused_toggle(
552
- override_context: typing.Optional[
553
- typing.Union[typing.Dict, "bpy.types.Context"]
554
- ] = None,
555
- execution_context: typing.Optional[typing.Union[str, int]] = None,
556
- undo: typing.Optional[bool] = None,
512
+ override_context: typing.Union[dict, bpy.types.Context] = None,
513
+ execution_context: typing.Union[str, int] = None,
514
+ undo: bool = None,
557
515
  ):
558
- """Toggle collapsed nodes and hide unused sockets :File: `startup/bl_operators/node.py\:226 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L226>`__
516
+ """Toggle collapsed nodes and hide unused sockets
559
517
 
560
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
561
- :type execution_context: typing.Optional[typing.Union[str, int]]
562
- :type undo: typing.Optional[bool]
518
+ :type override_context: typing.Union[dict, bpy.types.Context]
519
+ :type execution_context: typing.Union[str, int]
520
+ :type undo: bool
563
521
  """
564
522
 
565
523
  ...
566
524
 
567
525
  def cryptomatte_layer_add(
568
- override_context: typing.Optional[
569
- typing.Union[typing.Dict, "bpy.types.Context"]
570
- ] = None,
571
- execution_context: typing.Optional[typing.Union[str, int]] = None,
572
- undo: typing.Optional[bool] = None,
526
+ override_context: typing.Union[dict, bpy.types.Context] = None,
527
+ execution_context: typing.Union[str, int] = None,
528
+ undo: bool = None,
573
529
  ):
574
530
  """Add a new input layer to a Cryptomatte node
575
531
 
576
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
577
- :type execution_context: typing.Optional[typing.Union[str, int]]
578
- :type undo: typing.Optional[bool]
532
+ :type override_context: typing.Union[dict, bpy.types.Context]
533
+ :type execution_context: typing.Union[str, int]
534
+ :type undo: bool
579
535
  """
580
536
 
581
537
  ...
582
538
 
583
539
  def cryptomatte_layer_remove(
584
- override_context: typing.Optional[
585
- typing.Union[typing.Dict, "bpy.types.Context"]
586
- ] = None,
587
- execution_context: typing.Optional[typing.Union[str, int]] = None,
588
- undo: typing.Optional[bool] = None,
540
+ override_context: typing.Union[dict, bpy.types.Context] = None,
541
+ execution_context: typing.Union[str, int] = None,
542
+ undo: bool = None,
589
543
  ):
590
544
  """Remove layer from a Cryptomatte node
591
545
 
592
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
593
- :type execution_context: typing.Optional[typing.Union[str, int]]
594
- :type undo: typing.Optional[bool]
546
+ :type override_context: typing.Union[dict, bpy.types.Context]
547
+ :type execution_context: typing.Union[str, int]
548
+ :type undo: bool
595
549
  """
596
550
 
597
551
  ...
598
552
 
599
553
  def deactivate_viewer(
600
- override_context: typing.Optional[
601
- typing.Union[typing.Dict, "bpy.types.Context"]
602
- ] = None,
603
- execution_context: typing.Optional[typing.Union[str, int]] = None,
604
- undo: typing.Optional[bool] = None,
554
+ override_context: typing.Union[dict, bpy.types.Context] = None,
555
+ execution_context: typing.Union[str, int] = None,
556
+ undo: bool = None,
605
557
  ):
606
558
  """Deactivate selected viewer node in geometry nodes
607
559
 
608
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
609
- :type execution_context: typing.Optional[typing.Union[str, int]]
610
- :type undo: typing.Optional[bool]
560
+ :type override_context: typing.Union[dict, bpy.types.Context]
561
+ :type execution_context: typing.Union[str, int]
562
+ :type undo: bool
611
563
  """
612
564
 
613
565
  ...
614
566
 
615
567
  def delete(
616
- override_context: typing.Optional[
617
- typing.Union[typing.Dict, "bpy.types.Context"]
618
- ] = None,
619
- execution_context: typing.Optional[typing.Union[str, int]] = None,
620
- undo: typing.Optional[bool] = None,
568
+ override_context: typing.Union[dict, bpy.types.Context] = None,
569
+ execution_context: typing.Union[str, int] = None,
570
+ undo: bool = None,
621
571
  ):
622
572
  """Remove selected nodes
623
573
 
624
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
625
- :type execution_context: typing.Optional[typing.Union[str, int]]
626
- :type undo: typing.Optional[bool]
574
+ :type override_context: typing.Union[dict, bpy.types.Context]
575
+ :type execution_context: typing.Union[str, int]
576
+ :type undo: bool
627
577
  """
628
578
 
629
579
  ...
630
580
 
631
581
  def delete_reconnect(
632
- override_context: typing.Optional[
633
- typing.Union[typing.Dict, "bpy.types.Context"]
634
- ] = None,
635
- execution_context: typing.Optional[typing.Union[str, int]] = None,
636
- undo: typing.Optional[bool] = None,
582
+ override_context: typing.Union[dict, bpy.types.Context] = None,
583
+ execution_context: typing.Union[str, int] = None,
584
+ undo: bool = None,
637
585
  ):
638
586
  """Remove nodes and reconnect nodes as if deletion was muted
639
587
 
640
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
641
- :type execution_context: typing.Optional[typing.Union[str, int]]
642
- :type undo: typing.Optional[bool]
588
+ :type override_context: typing.Union[dict, bpy.types.Context]
589
+ :type execution_context: typing.Union[str, int]
590
+ :type undo: bool
643
591
  """
644
592
 
645
593
  ...
646
594
 
647
595
  def detach(
648
- override_context: typing.Optional[
649
- typing.Union[typing.Dict, "bpy.types.Context"]
650
- ] = None,
651
- execution_context: typing.Optional[typing.Union[str, int]] = None,
652
- undo: typing.Optional[bool] = None,
596
+ override_context: typing.Union[dict, bpy.types.Context] = None,
597
+ execution_context: typing.Union[str, int] = None,
598
+ undo: bool = None,
653
599
  ):
654
600
  """Detach selected nodes from parents
655
601
 
656
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
657
- :type execution_context: typing.Optional[typing.Union[str, int]]
658
- :type undo: typing.Optional[bool]
602
+ :type override_context: typing.Union[dict, bpy.types.Context]
603
+ :type execution_context: typing.Union[str, int]
604
+ :type undo: bool
659
605
  """
660
606
 
661
607
  ...
662
608
 
663
609
  def detach_translate_attach(
664
- override_context: typing.Optional[
665
- typing.Union[typing.Dict, "bpy.types.Context"]
666
- ] = None,
667
- execution_context: typing.Optional[typing.Union[str, int]] = None,
668
- undo: typing.Optional[bool] = None,
669
- *,
670
- NODE_OT_detach: typing.Optional["detach"] = None,
671
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
672
- NODE_OT_attach: typing.Optional["attach"] = None,
610
+ override_context: typing.Union[dict, bpy.types.Context] = None,
611
+ execution_context: typing.Union[str, int] = None,
612
+ undo: bool = None,
613
+ NODE_OT_detach: detach = None,
614
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
615
+ NODE_OT_attach: attach = None,
673
616
  ):
674
617
  """Detach nodes, move and attach to frame
675
618
 
676
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
677
- :type execution_context: typing.Optional[typing.Union[str, int]]
678
- :type undo: typing.Optional[bool]
619
+ :type override_context: typing.Union[dict, bpy.types.Context]
620
+ :type execution_context: typing.Union[str, int]
621
+ :type undo: bool
679
622
  :param NODE_OT_detach: Detach Nodes, Detach selected nodes from parents
680
- :type NODE_OT_detach: typing.Optional['detach']
623
+ :type NODE_OT_detach: detach
681
624
  :param TRANSFORM_OT_translate: Move, Move selected items
682
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
625
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
683
626
  :param NODE_OT_attach: Attach Nodes, Attach active node to a frame
684
- :type NODE_OT_attach: typing.Optional['attach']
627
+ :type NODE_OT_attach: attach
685
628
  """
686
629
 
687
630
  ...
688
631
 
689
632
  def duplicate(
690
- override_context: typing.Optional[
691
- typing.Union[typing.Dict, "bpy.types.Context"]
692
- ] = None,
693
- execution_context: typing.Optional[typing.Union[str, int]] = None,
694
- undo: typing.Optional[bool] = None,
695
- *,
696
- keep_inputs: typing.Optional[typing.Union[bool, typing.Any]] = False,
697
- linked: typing.Optional[typing.Union[bool, typing.Any]] = True,
633
+ override_context: typing.Union[dict, bpy.types.Context] = None,
634
+ execution_context: typing.Union[str, int] = None,
635
+ undo: bool = None,
636
+ keep_inputs: typing.Union[bool, typing.Any] = False,
637
+ linked: typing.Union[bool, typing.Any] = True,
698
638
  ):
699
639
  """Duplicate selected nodes
700
640
 
701
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
702
- :type execution_context: typing.Optional[typing.Union[str, int]]
703
- :type undo: typing.Optional[bool]
641
+ :type override_context: typing.Union[dict, bpy.types.Context]
642
+ :type execution_context: typing.Union[str, int]
643
+ :type undo: bool
704
644
  :param keep_inputs: Keep Inputs, Keep the input links to duplicated nodes
705
- :type keep_inputs: typing.Optional[typing.Union[bool, typing.Any]]
645
+ :type keep_inputs: typing.Union[bool, typing.Any]
706
646
  :param linked: Linked, Duplicate node but not node trees, linking to the original data
707
- :type linked: typing.Optional[typing.Union[bool, typing.Any]]
647
+ :type linked: typing.Union[bool, typing.Any]
708
648
  """
709
649
 
710
650
  ...
711
651
 
712
652
  def duplicate_move(
713
- override_context: typing.Optional[
714
- typing.Union[typing.Dict, "bpy.types.Context"]
715
- ] = None,
716
- execution_context: typing.Optional[typing.Union[str, int]] = None,
717
- undo: typing.Optional[bool] = None,
718
- *,
719
- NODE_OT_duplicate: typing.Optional["duplicate"] = None,
720
- NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
653
+ override_context: typing.Union[dict, bpy.types.Context] = None,
654
+ execution_context: typing.Union[str, int] = None,
655
+ undo: bool = None,
656
+ NODE_OT_duplicate: duplicate = None,
657
+ NODE_OT_translate_attach: translate_attach = None,
721
658
  ):
722
659
  """Duplicate selected nodes and move them
723
660
 
724
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
725
- :type execution_context: typing.Optional[typing.Union[str, int]]
726
- :type undo: typing.Optional[bool]
661
+ :type override_context: typing.Union[dict, bpy.types.Context]
662
+ :type execution_context: typing.Union[str, int]
663
+ :type undo: bool
727
664
  :param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
728
- :type NODE_OT_duplicate: typing.Optional['duplicate']
665
+ :type NODE_OT_duplicate: duplicate
729
666
  :param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
730
- :type NODE_OT_translate_attach: typing.Optional['translate_attach']
667
+ :type NODE_OT_translate_attach: translate_attach
731
668
  """
732
669
 
733
670
  ...
734
671
 
735
672
  def duplicate_move_keep_inputs(
736
- override_context: typing.Optional[
737
- typing.Union[typing.Dict, "bpy.types.Context"]
738
- ] = None,
739
- execution_context: typing.Optional[typing.Union[str, int]] = None,
740
- undo: typing.Optional[bool] = None,
741
- *,
742
- NODE_OT_duplicate: typing.Optional["duplicate"] = None,
743
- NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
673
+ override_context: typing.Union[dict, bpy.types.Context] = None,
674
+ execution_context: typing.Union[str, int] = None,
675
+ undo: bool = None,
676
+ NODE_OT_duplicate: duplicate = None,
677
+ NODE_OT_translate_attach: translate_attach = None,
744
678
  ):
745
679
  """Duplicate selected nodes keeping input links and move them
746
680
 
747
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
748
- :type execution_context: typing.Optional[typing.Union[str, int]]
749
- :type undo: typing.Optional[bool]
681
+ :type override_context: typing.Union[dict, bpy.types.Context]
682
+ :type execution_context: typing.Union[str, int]
683
+ :type undo: bool
750
684
  :param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
751
- :type NODE_OT_duplicate: typing.Optional['duplicate']
685
+ :type NODE_OT_duplicate: duplicate
752
686
  :param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
753
- :type NODE_OT_translate_attach: typing.Optional['translate_attach']
687
+ :type NODE_OT_translate_attach: translate_attach
754
688
  """
755
689
 
756
690
  ...
757
691
 
758
692
  def duplicate_move_linked(
759
- override_context: typing.Optional[
760
- typing.Union[typing.Dict, "bpy.types.Context"]
761
- ] = None,
762
- execution_context: typing.Optional[typing.Union[str, int]] = None,
763
- undo: typing.Optional[bool] = None,
764
- *,
765
- NODE_OT_duplicate: typing.Optional["duplicate"] = None,
766
- NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
693
+ override_context: typing.Union[dict, bpy.types.Context] = None,
694
+ execution_context: typing.Union[str, int] = None,
695
+ undo: bool = None,
696
+ NODE_OT_duplicate: duplicate = None,
697
+ NODE_OT_translate_attach: translate_attach = None,
767
698
  ):
768
699
  """Duplicate selected nodes, but not their node trees, and move them
769
700
 
770
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
771
- :type execution_context: typing.Optional[typing.Union[str, int]]
772
- :type undo: typing.Optional[bool]
701
+ :type override_context: typing.Union[dict, bpy.types.Context]
702
+ :type execution_context: typing.Union[str, int]
703
+ :type undo: bool
773
704
  :param NODE_OT_duplicate: Duplicate Nodes, Duplicate selected nodes
774
- :type NODE_OT_duplicate: typing.Optional['duplicate']
705
+ :type NODE_OT_duplicate: duplicate
775
706
  :param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
776
- :type NODE_OT_translate_attach: typing.Optional['translate_attach']
707
+ :type NODE_OT_translate_attach: translate_attach
777
708
  """
778
709
 
779
710
  ...
780
711
 
781
712
  def enum_definition_item_add(
782
- override_context: typing.Optional[
783
- typing.Union[typing.Dict, "bpy.types.Context"]
784
- ] = None,
785
- execution_context: typing.Optional[typing.Union[str, int]] = None,
786
- undo: typing.Optional[bool] = None,
713
+ override_context: typing.Union[dict, bpy.types.Context] = None,
714
+ execution_context: typing.Union[str, int] = None,
715
+ undo: bool = None,
787
716
  ):
788
- """Add an enum item to the definition :File: `startup/bl_operators/node.py\:395 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L395>`__
717
+ """Add an enum item to the definition
789
718
 
790
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
791
- :type execution_context: typing.Optional[typing.Union[str, int]]
792
- :type undo: typing.Optional[bool]
719
+ :type override_context: typing.Union[dict, bpy.types.Context]
720
+ :type execution_context: typing.Union[str, int]
721
+ :type undo: bool
793
722
  """
794
723
 
795
724
  ...
796
725
 
797
726
  def enum_definition_item_move(
798
- override_context: typing.Optional[
799
- typing.Union[typing.Dict, "bpy.types.Context"]
800
- ] = None,
801
- execution_context: typing.Optional[typing.Union[str, int]] = None,
802
- undo: typing.Optional[bool] = None,
803
- *,
804
- direction: typing.Optional[typing.Any] = "UP",
805
- ):
806
- """Remove the selected enum item from the definition :File: `startup/bl_operators/node.py\:431 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L431>`__
807
-
808
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
809
- :type execution_context: typing.Optional[typing.Union[str, int]]
810
- :type undo: typing.Optional[bool]
727
+ override_context: typing.Union[dict, bpy.types.Context] = None,
728
+ execution_context: typing.Union[str, int] = None,
729
+ undo: bool = None,
730
+ direction: typing.Any = "UP",
731
+ ):
732
+ """Remove the selected enum item from the definition
733
+
734
+ :type override_context: typing.Union[dict, bpy.types.Context]
735
+ :type execution_context: typing.Union[str, int]
736
+ :type undo: bool
811
737
  :param direction: Direction, Move up or down
812
- :type direction: typing.Optional[typing.Any]
738
+ :type direction: typing.Any
813
739
  """
814
740
 
815
741
  ...
816
742
 
817
743
  def enum_definition_item_remove(
818
- override_context: typing.Optional[
819
- typing.Union[typing.Dict, "bpy.types.Context"]
820
- ] = None,
821
- execution_context: typing.Optional[typing.Union[str, int]] = None,
822
- undo: typing.Optional[bool] = None,
744
+ override_context: typing.Union[dict, bpy.types.Context] = None,
745
+ execution_context: typing.Union[str, int] = None,
746
+ undo: bool = None,
823
747
  ):
824
- """Remove the selected enum item from the definition :File: `startup/bl_operators/node.py\:409 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L409>`__
748
+ """Remove the selected enum item from the definition
825
749
 
826
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
827
- :type execution_context: typing.Optional[typing.Union[str, int]]
828
- :type undo: typing.Optional[bool]
750
+ :type override_context: typing.Union[dict, bpy.types.Context]
751
+ :type execution_context: typing.Union[str, int]
752
+ :type undo: bool
829
753
  """
830
754
 
831
755
  ...
832
756
 
833
757
  def find_node(
834
- override_context: typing.Optional[
835
- typing.Union[typing.Dict, "bpy.types.Context"]
836
- ] = None,
837
- execution_context: typing.Optional[typing.Union[str, int]] = None,
838
- undo: typing.Optional[bool] = None,
758
+ override_context: typing.Union[dict, bpy.types.Context] = None,
759
+ execution_context: typing.Union[str, int] = None,
760
+ undo: bool = None,
839
761
  ):
840
762
  """Search for a node by name and focus and select it
841
763
 
842
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
843
- :type execution_context: typing.Optional[typing.Union[str, int]]
844
- :type undo: typing.Optional[bool]
764
+ :type override_context: typing.Union[dict, bpy.types.Context]
765
+ :type execution_context: typing.Union[str, int]
766
+ :type undo: bool
845
767
  """
846
768
 
847
769
  ...
848
770
 
849
771
  def gltf_settings_node_operator(
850
- override_context: typing.Optional[
851
- typing.Union[typing.Dict, "bpy.types.Context"]
852
- ] = None,
853
- execution_context: typing.Optional[typing.Union[str, int]] = None,
854
- undo: typing.Optional[bool] = None,
772
+ override_context: typing.Union[dict, bpy.types.Context] = None,
773
+ execution_context: typing.Union[str, int] = None,
774
+ undo: bool = None,
855
775
  ):
856
- """Add a node to the active tree for glTF export :File: `addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py\:33 <https://projects.blender.org/blender/blender-addons/addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py#L33>`__
776
+ """Add a node to the active tree for glTF export
857
777
 
858
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
859
- :type execution_context: typing.Optional[typing.Union[str, int]]
860
- :type undo: typing.Optional[bool]
778
+ :type override_context: typing.Union[dict, bpy.types.Context]
779
+ :type execution_context: typing.Union[str, int]
780
+ :type undo: bool
861
781
  """
862
782
 
863
783
  ...
864
784
 
865
785
  def group_edit(
866
- override_context: typing.Optional[
867
- typing.Union[typing.Dict, "bpy.types.Context"]
868
- ] = None,
869
- execution_context: typing.Optional[typing.Union[str, int]] = None,
870
- undo: typing.Optional[bool] = None,
871
- *,
872
- exit: typing.Optional[typing.Union[bool, typing.Any]] = False,
786
+ override_context: typing.Union[dict, bpy.types.Context] = None,
787
+ execution_context: typing.Union[str, int] = None,
788
+ undo: bool = None,
789
+ exit: typing.Union[bool, typing.Any] = False,
873
790
  ):
874
791
  """Edit node group
875
792
 
876
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
877
- :type execution_context: typing.Optional[typing.Union[str, int]]
878
- :type undo: typing.Optional[bool]
793
+ :type override_context: typing.Union[dict, bpy.types.Context]
794
+ :type execution_context: typing.Union[str, int]
795
+ :type undo: bool
879
796
  :param exit: Exit
880
- :type exit: typing.Optional[typing.Union[bool, typing.Any]]
797
+ :type exit: typing.Union[bool, typing.Any]
881
798
  """
882
799
 
883
800
  ...
884
801
 
885
802
  def group_insert(
886
- override_context: typing.Optional[
887
- typing.Union[typing.Dict, "bpy.types.Context"]
888
- ] = None,
889
- execution_context: typing.Optional[typing.Union[str, int]] = None,
890
- undo: typing.Optional[bool] = None,
803
+ override_context: typing.Union[dict, bpy.types.Context] = None,
804
+ execution_context: typing.Union[str, int] = None,
805
+ undo: bool = None,
891
806
  ):
892
807
  """Insert selected nodes into a node group
893
808
 
894
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
895
- :type execution_context: typing.Optional[typing.Union[str, int]]
896
- :type undo: typing.Optional[bool]
809
+ :type override_context: typing.Union[dict, bpy.types.Context]
810
+ :type execution_context: typing.Union[str, int]
811
+ :type undo: bool
897
812
  """
898
813
 
899
814
  ...
900
815
 
901
816
  def group_make(
902
- override_context: typing.Optional[
903
- typing.Union[typing.Dict, "bpy.types.Context"]
904
- ] = None,
905
- execution_context: typing.Optional[typing.Union[str, int]] = None,
906
- undo: typing.Optional[bool] = None,
817
+ override_context: typing.Union[dict, bpy.types.Context] = None,
818
+ execution_context: typing.Union[str, int] = None,
819
+ undo: bool = None,
907
820
  ):
908
821
  """Make group from selected nodes
909
822
 
910
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
911
- :type execution_context: typing.Optional[typing.Union[str, int]]
912
- :type undo: typing.Optional[bool]
823
+ :type override_context: typing.Union[dict, bpy.types.Context]
824
+ :type execution_context: typing.Union[str, int]
825
+ :type undo: bool
913
826
  """
914
827
 
915
828
  ...
916
829
 
917
830
  def group_separate(
918
- override_context: typing.Optional[
919
- typing.Union[typing.Dict, "bpy.types.Context"]
920
- ] = None,
921
- execution_context: typing.Optional[typing.Union[str, int]] = None,
922
- undo: typing.Optional[bool] = None,
923
- *,
924
- type: typing.Optional[typing.Any] = "COPY",
831
+ override_context: typing.Union[dict, bpy.types.Context] = None,
832
+ execution_context: typing.Union[str, int] = None,
833
+ undo: bool = None,
834
+ type: typing.Any = "COPY",
925
835
  ):
926
836
  """Separate selected nodes from the node group
927
837
 
928
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
929
- :type execution_context: typing.Optional[typing.Union[str, int]]
930
- :type undo: typing.Optional[bool]
931
- :param type: Type * ``COPY`` Copy -- Copy to parent node tree, keep group intact. * ``MOVE`` Move -- Move to parent node tree, remove from group.
932
- :type type: typing.Optional[typing.Any]
838
+ :type override_context: typing.Union[dict, bpy.types.Context]
839
+ :type execution_context: typing.Union[str, int]
840
+ :type undo: bool
841
+ :param type: Type
842
+
843
+ COPY
844
+ Copy -- Copy to parent node tree, keep group intact.
845
+
846
+ MOVE
847
+ Move -- Move to parent node tree, remove from group.
848
+ :type type: typing.Any
933
849
  """
934
850
 
935
851
  ...
936
852
 
937
853
  def group_ungroup(
938
- override_context: typing.Optional[
939
- typing.Union[typing.Dict, "bpy.types.Context"]
940
- ] = None,
941
- execution_context: typing.Optional[typing.Union[str, int]] = None,
942
- undo: typing.Optional[bool] = None,
854
+ override_context: typing.Union[dict, bpy.types.Context] = None,
855
+ execution_context: typing.Union[str, int] = None,
856
+ undo: bool = None,
943
857
  ):
944
858
  """Ungroup selected nodes
945
859
 
946
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
947
- :type execution_context: typing.Optional[typing.Union[str, int]]
948
- :type undo: typing.Optional[bool]
860
+ :type override_context: typing.Union[dict, bpy.types.Context]
861
+ :type execution_context: typing.Union[str, int]
862
+ :type undo: bool
949
863
  """
950
864
 
951
865
  ...
952
866
 
953
867
  def hide_socket_toggle(
954
- override_context: typing.Optional[
955
- typing.Union[typing.Dict, "bpy.types.Context"]
956
- ] = None,
957
- execution_context: typing.Optional[typing.Union[str, int]] = None,
958
- undo: typing.Optional[bool] = None,
868
+ override_context: typing.Union[dict, bpy.types.Context] = None,
869
+ execution_context: typing.Union[str, int] = None,
870
+ undo: bool = None,
959
871
  ):
960
872
  """Toggle unused node socket display
961
873
 
962
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
963
- :type execution_context: typing.Optional[typing.Union[str, int]]
964
- :type undo: typing.Optional[bool]
874
+ :type override_context: typing.Union[dict, bpy.types.Context]
875
+ :type execution_context: typing.Union[str, int]
876
+ :type undo: bool
965
877
  """
966
878
 
967
879
  ...
968
880
 
969
881
  def hide_toggle(
970
- override_context: typing.Optional[
971
- typing.Union[typing.Dict, "bpy.types.Context"]
972
- ] = None,
973
- execution_context: typing.Optional[typing.Union[str, int]] = None,
974
- undo: typing.Optional[bool] = None,
882
+ override_context: typing.Union[dict, bpy.types.Context] = None,
883
+ execution_context: typing.Union[str, int] = None,
884
+ undo: bool = None,
975
885
  ):
976
886
  """Toggle hiding of selected nodes
977
887
 
978
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
979
- :type execution_context: typing.Optional[typing.Union[str, int]]
980
- :type undo: typing.Optional[bool]
888
+ :type override_context: typing.Union[dict, bpy.types.Context]
889
+ :type execution_context: typing.Union[str, int]
890
+ :type undo: bool
981
891
  """
982
892
 
983
893
  ...
984
894
 
985
895
  def index_switch_item_add(
986
- override_context: typing.Optional[
987
- typing.Union[typing.Dict, "bpy.types.Context"]
988
- ] = None,
989
- execution_context: typing.Optional[typing.Union[str, int]] = None,
990
- undo: typing.Optional[bool] = None,
896
+ override_context: typing.Union[dict, bpy.types.Context] = None,
897
+ execution_context: typing.Union[str, int] = None,
898
+ undo: bool = None,
991
899
  ):
992
- """Add an item to the index switch :File: `startup/bl_operators/geometry_nodes.py\:528 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L528>`__
900
+ """Add an item to the index switch
993
901
 
994
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
995
- :type execution_context: typing.Optional[typing.Union[str, int]]
996
- :type undo: typing.Optional[bool]
902
+ :type override_context: typing.Union[dict, bpy.types.Context]
903
+ :type execution_context: typing.Union[str, int]
904
+ :type undo: bool
997
905
  """
998
906
 
999
907
  ...
1000
908
 
1001
909
  def index_switch_item_remove(
1002
- override_context: typing.Optional[
1003
- typing.Union[typing.Dict, "bpy.types.Context"]
1004
- ] = None,
1005
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1006
- undo: typing.Optional[bool] = None,
1007
- *,
1008
- index: typing.Optional[typing.Any] = 0,
1009
- ):
1010
- """Remove an item from the index switch :File: `startup/bl_operators/geometry_nodes.py\:549 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L549>`__
1011
-
1012
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1013
- :type execution_context: typing.Optional[typing.Union[str, int]]
1014
- :type undo: typing.Optional[bool]
910
+ override_context: typing.Union[dict, bpy.types.Context] = None,
911
+ execution_context: typing.Union[str, int] = None,
912
+ undo: bool = None,
913
+ index: typing.Any = 0,
914
+ ):
915
+ """Remove an item from the index switch
916
+
917
+ :type override_context: typing.Union[dict, bpy.types.Context]
918
+ :type execution_context: typing.Union[str, int]
919
+ :type undo: bool
1015
920
  :param index: Index, Index of item to remove
1016
- :type index: typing.Optional[typing.Any]
921
+ :type index: typing.Any
1017
922
  """
1018
923
 
1019
924
  ...
1020
925
 
1021
926
  def insert_offset(
1022
- override_context: typing.Optional[
1023
- typing.Union[typing.Dict, "bpy.types.Context"]
1024
- ] = None,
1025
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1026
- undo: typing.Optional[bool] = None,
927
+ override_context: typing.Union[dict, bpy.types.Context] = None,
928
+ execution_context: typing.Union[str, int] = None,
929
+ undo: bool = None,
1027
930
  ):
1028
931
  """Automatically offset nodes on insertion
1029
932
 
1030
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1031
- :type execution_context: typing.Optional[typing.Union[str, int]]
1032
- :type undo: typing.Optional[bool]
933
+ :type override_context: typing.Union[dict, bpy.types.Context]
934
+ :type execution_context: typing.Union[str, int]
935
+ :type undo: bool
1033
936
  """
1034
937
 
1035
938
  ...
1036
939
 
1037
940
  def interface_item_duplicate(
1038
- override_context: typing.Optional[
1039
- typing.Union[typing.Dict, "bpy.types.Context"]
1040
- ] = None,
1041
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1042
- undo: typing.Optional[bool] = None,
941
+ override_context: typing.Union[dict, bpy.types.Context] = None,
942
+ execution_context: typing.Union[str, int] = None,
943
+ undo: bool = None,
1043
944
  ):
1044
- """Add a copy of the active item to the interface :File: `startup/bl_operators/node.py\:357 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L357>`__
945
+ """Add a copy of the active item to the interface
1045
946
 
1046
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1047
- :type execution_context: typing.Optional[typing.Union[str, int]]
1048
- :type undo: typing.Optional[bool]
947
+ :type override_context: typing.Union[dict, bpy.types.Context]
948
+ :type execution_context: typing.Union[str, int]
949
+ :type undo: bool
1049
950
  """
1050
951
 
1051
952
  ...
1052
953
 
1053
954
  def interface_item_new(
1054
- override_context: typing.Optional[
1055
- typing.Union[typing.Dict, "bpy.types.Context"]
1056
- ] = None,
1057
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1058
- undo: typing.Optional[bool] = None,
1059
- *,
1060
- item_type: typing.Optional[typing.Any] = "INPUT",
1061
- ):
1062
- """Add a new item to the interface :File: `startup/bl_operators/node.py\:312 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L312>`__
1063
-
1064
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1065
- :type execution_context: typing.Optional[typing.Union[str, int]]
1066
- :type undo: typing.Optional[bool]
955
+ override_context: typing.Union[dict, bpy.types.Context] = None,
956
+ execution_context: typing.Union[str, int] = None,
957
+ undo: bool = None,
958
+ item_type: typing.Any = "INPUT",
959
+ ):
960
+ """Add a new item to the interface
961
+
962
+ :type override_context: typing.Union[dict, bpy.types.Context]
963
+ :type execution_context: typing.Union[str, int]
964
+ :type undo: bool
1067
965
  :param item_type: Item Type, Type of the item to create
1068
- :type item_type: typing.Optional[typing.Any]
966
+ :type item_type: typing.Any
1069
967
  """
1070
968
 
1071
969
  ...
1072
970
 
1073
971
  def interface_item_remove(
1074
- override_context: typing.Optional[
1075
- typing.Union[typing.Dict, "bpy.types.Context"]
1076
- ] = None,
1077
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1078
- undo: typing.Optional[bool] = None,
972
+ override_context: typing.Union[dict, bpy.types.Context] = None,
973
+ execution_context: typing.Union[str, int] = None,
974
+ undo: bool = None,
1079
975
  ):
1080
- """Remove active item from the interface :File: `startup/bl_operators/node.py\:376 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L376>`__
976
+ """Remove active item from the interface
1081
977
 
1082
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1083
- :type execution_context: typing.Optional[typing.Union[str, int]]
1084
- :type undo: typing.Optional[bool]
978
+ :type override_context: typing.Union[dict, bpy.types.Context]
979
+ :type execution_context: typing.Union[str, int]
980
+ :type undo: bool
1085
981
  """
1086
982
 
1087
983
  ...
1088
984
 
1089
985
  def join(
1090
- override_context: typing.Optional[
1091
- typing.Union[typing.Dict, "bpy.types.Context"]
1092
- ] = None,
1093
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1094
- undo: typing.Optional[bool] = None,
986
+ override_context: typing.Union[dict, bpy.types.Context] = None,
987
+ execution_context: typing.Union[str, int] = None,
988
+ undo: bool = None,
1095
989
  ):
1096
990
  """Attach selected nodes to a new common frame
1097
991
 
1098
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1099
- :type execution_context: typing.Optional[typing.Union[str, int]]
1100
- :type undo: typing.Optional[bool]
992
+ :type override_context: typing.Union[dict, bpy.types.Context]
993
+ :type execution_context: typing.Union[str, int]
994
+ :type undo: bool
1101
995
  """
1102
996
 
1103
997
  ...
1104
998
 
1105
999
  def link(
1106
- override_context: typing.Optional[
1107
- typing.Union[typing.Dict, "bpy.types.Context"]
1108
- ] = None,
1109
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1110
- undo: typing.Optional[bool] = None,
1111
- *,
1112
- detach: typing.Optional[typing.Union[bool, typing.Any]] = False,
1113
- drag_start: typing.Optional[typing.Any] = (0.0, 0.0),
1114
- inside_padding: typing.Optional[typing.Any] = 2.0,
1115
- outside_padding: typing.Optional[typing.Any] = 0.0,
1116
- speed_ramp: typing.Optional[typing.Any] = 1.0,
1117
- max_speed: typing.Optional[typing.Any] = 26.0,
1118
- delay: typing.Optional[typing.Any] = 0.5,
1119
- zoom_influence: typing.Optional[typing.Any] = 0.5,
1000
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1001
+ execution_context: typing.Union[str, int] = None,
1002
+ undo: bool = None,
1003
+ detach: typing.Union[bool, typing.Any] = False,
1004
+ drag_start: typing.Any = (0.0, 0.0),
1005
+ inside_padding: typing.Any = 2.0,
1006
+ outside_padding: typing.Any = 0.0,
1007
+ speed_ramp: typing.Any = 1.0,
1008
+ max_speed: typing.Any = 26.0,
1009
+ delay: typing.Any = 0.5,
1010
+ zoom_influence: typing.Any = 0.5,
1120
1011
  ):
1121
1012
  """Use the mouse to create a link between two nodes
1122
1013
 
1123
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1124
- :type execution_context: typing.Optional[typing.Union[str, int]]
1125
- :type undo: typing.Optional[bool]
1014
+ :type override_context: typing.Union[dict, bpy.types.Context]
1015
+ :type execution_context: typing.Union[str, int]
1016
+ :type undo: bool
1126
1017
  :param detach: Detach, Detach and redirect existing links
1127
- :type detach: typing.Optional[typing.Union[bool, typing.Any]]
1018
+ :type detach: typing.Union[bool, typing.Any]
1128
1019
  :param drag_start: Drag Start, The position of the mouse cursor at the start of the operation
1129
- :type drag_start: typing.Optional[typing.Any]
1020
+ :type drag_start: typing.Any
1130
1021
  :param inside_padding: Inside Padding, Inside distance in UI units from the edge of the region within which to start panning
1131
- :type inside_padding: typing.Optional[typing.Any]
1022
+ :type inside_padding: typing.Any
1132
1023
  :param outside_padding: Outside Padding, Outside distance in UI units from the edge of the region at which to stop panning
1133
- :type outside_padding: typing.Optional[typing.Any]
1024
+ :type outside_padding: typing.Any
1134
1025
  :param speed_ramp: Speed Ramp, Width of the zone in UI units where speed increases with distance from the edge
1135
- :type speed_ramp: typing.Optional[typing.Any]
1026
+ :type speed_ramp: typing.Any
1136
1027
  :param max_speed: Max Speed, Maximum speed in UI units per second
1137
- :type max_speed: typing.Optional[typing.Any]
1028
+ :type max_speed: typing.Any
1138
1029
  :param delay: Delay, Delay in seconds before maximum speed is reached
1139
- :type delay: typing.Optional[typing.Any]
1030
+ :type delay: typing.Any
1140
1031
  :param zoom_influence: Zoom Influence, Influence of the zoom factor on scroll speed
1141
- :type zoom_influence: typing.Optional[typing.Any]
1032
+ :type zoom_influence: typing.Any
1142
1033
  """
1143
1034
 
1144
1035
  ...
1145
1036
 
1146
1037
  def link_make(
1147
- override_context: typing.Optional[
1148
- typing.Union[typing.Dict, "bpy.types.Context"]
1149
- ] = None,
1150
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1151
- undo: typing.Optional[bool] = None,
1152
- *,
1153
- replace: typing.Optional[typing.Union[bool, typing.Any]] = False,
1038
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1039
+ execution_context: typing.Union[str, int] = None,
1040
+ undo: bool = None,
1041
+ replace: typing.Union[bool, typing.Any] = False,
1154
1042
  ):
1155
1043
  """Makes a link between selected output in input sockets
1156
1044
 
1157
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1158
- :type execution_context: typing.Optional[typing.Union[str, int]]
1159
- :type undo: typing.Optional[bool]
1045
+ :type override_context: typing.Union[dict, bpy.types.Context]
1046
+ :type execution_context: typing.Union[str, int]
1047
+ :type undo: bool
1160
1048
  :param replace: Replace, Replace socket connections with the new links
1161
- :type replace: typing.Optional[typing.Union[bool, typing.Any]]
1049
+ :type replace: typing.Union[bool, typing.Any]
1162
1050
  """
1163
1051
 
1164
1052
  ...
1165
1053
 
1166
1054
  def link_viewer(
1167
- override_context: typing.Optional[
1168
- typing.Union[typing.Dict, "bpy.types.Context"]
1169
- ] = None,
1170
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1171
- undo: typing.Optional[bool] = None,
1055
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1056
+ execution_context: typing.Union[str, int] = None,
1057
+ undo: bool = None,
1172
1058
  ):
1173
1059
  """Link to viewer node
1174
1060
 
1175
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1176
- :type execution_context: typing.Optional[typing.Union[str, int]]
1177
- :type undo: typing.Optional[bool]
1061
+ :type override_context: typing.Union[dict, bpy.types.Context]
1062
+ :type execution_context: typing.Union[str, int]
1063
+ :type undo: bool
1178
1064
  """
1179
1065
 
1180
1066
  ...
1181
1067
 
1182
1068
  def links_cut(
1183
- override_context: typing.Optional[
1184
- typing.Union[typing.Dict, "bpy.types.Context"]
1185
- ] = None,
1186
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1187
- undo: typing.Optional[bool] = None,
1188
- *,
1189
- path: typing.Optional[
1190
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
1191
- ] = None,
1192
- cursor: typing.Optional[typing.Any] = 12,
1069
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1070
+ execution_context: typing.Union[str, int] = None,
1071
+ undo: bool = None,
1072
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
1073
+ cursor: typing.Any = 12,
1193
1074
  ):
1194
1075
  """Use the mouse to cut (remove) some links
1195
1076
 
1196
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1197
- :type execution_context: typing.Optional[typing.Union[str, int]]
1198
- :type undo: typing.Optional[bool]
1077
+ :type override_context: typing.Union[dict, bpy.types.Context]
1078
+ :type execution_context: typing.Union[str, int]
1079
+ :type undo: bool
1199
1080
  :param path: Path
1200
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
1081
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
1201
1082
  :param cursor: Cursor
1202
- :type cursor: typing.Optional[typing.Any]
1083
+ :type cursor: typing.Any
1203
1084
  """
1204
1085
 
1205
1086
  ...
1206
1087
 
1207
1088
  def links_detach(
1208
- override_context: typing.Optional[
1209
- typing.Union[typing.Dict, "bpy.types.Context"]
1210
- ] = None,
1211
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1212
- undo: typing.Optional[bool] = None,
1089
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1090
+ execution_context: typing.Union[str, int] = None,
1091
+ undo: bool = None,
1213
1092
  ):
1214
1093
  """Remove all links to selected nodes, and try to connect neighbor nodes together
1215
1094
 
1216
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1217
- :type execution_context: typing.Optional[typing.Union[str, int]]
1218
- :type undo: typing.Optional[bool]
1095
+ :type override_context: typing.Union[dict, bpy.types.Context]
1096
+ :type execution_context: typing.Union[str, int]
1097
+ :type undo: bool
1219
1098
  """
1220
1099
 
1221
1100
  ...
1222
1101
 
1223
1102
  def links_mute(
1224
- override_context: typing.Optional[
1225
- typing.Union[typing.Dict, "bpy.types.Context"]
1226
- ] = None,
1227
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1228
- undo: typing.Optional[bool] = None,
1229
- *,
1230
- path: typing.Optional[
1231
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
1232
- ] = None,
1233
- cursor: typing.Optional[typing.Any] = 35,
1103
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1104
+ execution_context: typing.Union[str, int] = None,
1105
+ undo: bool = None,
1106
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
1107
+ cursor: typing.Any = 35,
1234
1108
  ):
1235
1109
  """Use the mouse to mute links
1236
1110
 
1237
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1238
- :type execution_context: typing.Optional[typing.Union[str, int]]
1239
- :type undo: typing.Optional[bool]
1111
+ :type override_context: typing.Union[dict, bpy.types.Context]
1112
+ :type execution_context: typing.Union[str, int]
1113
+ :type undo: bool
1240
1114
  :param path: Path
1241
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
1115
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
1242
1116
  :param cursor: Cursor
1243
- :type cursor: typing.Optional[typing.Any]
1117
+ :type cursor: typing.Any
1244
1118
  """
1245
1119
 
1246
1120
  ...
1247
1121
 
1248
1122
  def move_detach_links(
1249
- override_context: typing.Optional[
1250
- typing.Union[typing.Dict, "bpy.types.Context"]
1251
- ] = None,
1252
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1253
- undo: typing.Optional[bool] = None,
1254
- *,
1255
- NODE_OT_links_detach: typing.Optional["links_detach"] = None,
1256
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
1123
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1124
+ execution_context: typing.Union[str, int] = None,
1125
+ undo: bool = None,
1126
+ NODE_OT_links_detach: links_detach = None,
1127
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
1257
1128
  ):
1258
1129
  """Move a node to detach links
1259
1130
 
1260
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1261
- :type execution_context: typing.Optional[typing.Union[str, int]]
1262
- :type undo: typing.Optional[bool]
1131
+ :type override_context: typing.Union[dict, bpy.types.Context]
1132
+ :type execution_context: typing.Union[str, int]
1133
+ :type undo: bool
1263
1134
  :param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
1264
- :type NODE_OT_links_detach: typing.Optional['links_detach']
1135
+ :type NODE_OT_links_detach: links_detach
1265
1136
  :param TRANSFORM_OT_translate: Move, Move selected items
1266
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
1137
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
1267
1138
  """
1268
1139
 
1269
1140
  ...
1270
1141
 
1271
1142
  def move_detach_links_release(
1272
- override_context: typing.Optional[
1273
- typing.Union[typing.Dict, "bpy.types.Context"]
1274
- ] = None,
1275
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1276
- undo: typing.Optional[bool] = None,
1277
- *,
1278
- NODE_OT_links_detach: typing.Optional["links_detach"] = None,
1279
- NODE_OT_translate_attach: typing.Optional["translate_attach"] = None,
1143
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1144
+ execution_context: typing.Union[str, int] = None,
1145
+ undo: bool = None,
1146
+ NODE_OT_links_detach: links_detach = None,
1147
+ NODE_OT_translate_attach: translate_attach = None,
1280
1148
  ):
1281
1149
  """Move a node to detach links
1282
1150
 
1283
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1284
- :type execution_context: typing.Optional[typing.Union[str, int]]
1285
- :type undo: typing.Optional[bool]
1151
+ :type override_context: typing.Union[dict, bpy.types.Context]
1152
+ :type execution_context: typing.Union[str, int]
1153
+ :type undo: bool
1286
1154
  :param NODE_OT_links_detach: Detach Links, Remove all links to selected nodes, and try to connect neighbor nodes together
1287
- :type NODE_OT_links_detach: typing.Optional['links_detach']
1155
+ :type NODE_OT_links_detach: links_detach
1288
1156
  :param NODE_OT_translate_attach: Move and Attach, Move nodes and attach to frame
1289
- :type NODE_OT_translate_attach: typing.Optional['translate_attach']
1157
+ :type NODE_OT_translate_attach: translate_attach
1290
1158
  """
1291
1159
 
1292
1160
  ...
1293
1161
 
1294
1162
  def mute_toggle(
1295
- override_context: typing.Optional[
1296
- typing.Union[typing.Dict, "bpy.types.Context"]
1297
- ] = None,
1298
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1299
- undo: typing.Optional[bool] = None,
1163
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1164
+ execution_context: typing.Union[str, int] = None,
1165
+ undo: bool = None,
1300
1166
  ):
1301
1167
  """Toggle muting of selected nodes
1302
1168
 
1303
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1304
- :type execution_context: typing.Optional[typing.Union[str, int]]
1305
- :type undo: typing.Optional[bool]
1169
+ :type override_context: typing.Union[dict, bpy.types.Context]
1170
+ :type execution_context: typing.Union[str, int]
1171
+ :type undo: bool
1306
1172
  """
1307
1173
 
1308
1174
  ...
1309
1175
 
1310
1176
  def new_geometry_node_group_assign(
1311
- override_context: typing.Optional[
1312
- typing.Union[typing.Dict, "bpy.types.Context"]
1313
- ] = None,
1314
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1315
- undo: typing.Optional[bool] = None,
1177
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1178
+ execution_context: typing.Union[str, int] = None,
1179
+ undo: bool = None,
1316
1180
  ):
1317
- """Create a new geometry node group and assign it to the active modifier :File: `startup/bl_operators/geometry_nodes.py\:289 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L289>`__
1181
+ """Create a new geometry node group and assign it to the active modifier
1318
1182
 
1319
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1320
- :type execution_context: typing.Optional[typing.Union[str, int]]
1321
- :type undo: typing.Optional[bool]
1183
+ :type override_context: typing.Union[dict, bpy.types.Context]
1184
+ :type execution_context: typing.Union[str, int]
1185
+ :type undo: bool
1322
1186
  """
1323
1187
 
1324
1188
  ...
1325
1189
 
1326
1190
  def new_geometry_node_group_tool(
1327
- override_context: typing.Optional[
1328
- typing.Union[typing.Dict, "bpy.types.Context"]
1329
- ] = None,
1330
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1331
- undo: typing.Optional[bool] = None,
1191
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1192
+ execution_context: typing.Union[str, int] = None,
1193
+ undo: bool = None,
1332
1194
  ):
1333
- """Create a new geometry node group for a tool :File: `startup/bl_operators/geometry_nodes.py\:310 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L310>`__
1195
+ """Create a new geometry node group for a tool
1334
1196
 
1335
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1336
- :type execution_context: typing.Optional[typing.Union[str, int]]
1337
- :type undo: typing.Optional[bool]
1197
+ :type override_context: typing.Union[dict, bpy.types.Context]
1198
+ :type execution_context: typing.Union[str, int]
1199
+ :type undo: bool
1338
1200
  """
1339
1201
 
1340
1202
  ...
1341
1203
 
1342
1204
  def new_geometry_nodes_modifier(
1343
- override_context: typing.Optional[
1344
- typing.Union[typing.Dict, "bpy.types.Context"]
1345
- ] = None,
1346
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1347
- undo: typing.Optional[bool] = None,
1205
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1206
+ execution_context: typing.Union[str, int] = None,
1207
+ undo: bool = None,
1348
1208
  ):
1349
- """Create a new modifier with a new geometry node group :File: `startup/bl_operators/geometry_nodes.py\:266 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L266>`__
1209
+ """Create a new modifier with a new geometry node group
1350
1210
 
1351
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1352
- :type execution_context: typing.Optional[typing.Union[str, int]]
1353
- :type undo: typing.Optional[bool]
1211
+ :type override_context: typing.Union[dict, bpy.types.Context]
1212
+ :type execution_context: typing.Union[str, int]
1213
+ :type undo: bool
1354
1214
  """
1355
1215
 
1356
1216
  ...
1357
1217
 
1358
1218
  def new_node_tree(
1359
- override_context: typing.Optional[
1360
- typing.Union[typing.Dict, "bpy.types.Context"]
1361
- ] = None,
1362
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1363
- undo: typing.Optional[bool] = None,
1364
- *,
1365
- type: typing.Optional[typing.Union[str, int, typing.Any]] = "",
1219
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1220
+ execution_context: typing.Union[str, int] = None,
1221
+ undo: bool = None,
1222
+ type: typing.Union[str, int, typing.Any] = "",
1366
1223
  name: typing.Union[str, typing.Any] = "NodeTree",
1367
1224
  ):
1368
1225
  """Create a new node tree
1369
1226
 
1370
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1371
- :type execution_context: typing.Optional[typing.Union[str, int]]
1372
- :type undo: typing.Optional[bool]
1227
+ :type override_context: typing.Union[dict, bpy.types.Context]
1228
+ :type execution_context: typing.Union[str, int]
1229
+ :type undo: bool
1373
1230
  :param type: Tree Type
1374
- :type type: typing.Optional[typing.Union[str, int, typing.Any]]
1231
+ :type type: typing.Union[str, int, typing.Any]
1375
1232
  :param name: Name
1376
1233
  :type name: typing.Union[str, typing.Any]
1377
1234
  """
@@ -1379,77 +1236,67 @@ def new_node_tree(
1379
1236
  ...
1380
1237
 
1381
1238
  def node_color_preset_add(
1382
- override_context: typing.Optional[
1383
- typing.Union[typing.Dict, "bpy.types.Context"]
1384
- ] = None,
1385
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1386
- undo: typing.Optional[bool] = None,
1387
- *,
1239
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1240
+ execution_context: typing.Union[str, int] = None,
1241
+ undo: bool = None,
1388
1242
  name: typing.Union[str, typing.Any] = "",
1389
- remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
1390
- remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
1243
+ remove_name: typing.Union[bool, typing.Any] = False,
1244
+ remove_active: typing.Union[bool, typing.Any] = False,
1391
1245
  ):
1392
- """Add or remove a Node Color Preset :File: `startup/bl_operators/presets.py\:77 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/presets.py#L77>`__
1246
+ """Add or remove a Node Color Preset
1393
1247
 
1394
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1395
- :type execution_context: typing.Optional[typing.Union[str, int]]
1396
- :type undo: typing.Optional[bool]
1248
+ :type override_context: typing.Union[dict, bpy.types.Context]
1249
+ :type execution_context: typing.Union[str, int]
1250
+ :type undo: bool
1397
1251
  :param name: Name, Name of the preset, used to make the path name
1398
1252
  :type name: typing.Union[str, typing.Any]
1399
1253
  :param remove_name: remove_name
1400
- :type remove_name: typing.Optional[typing.Union[bool, typing.Any]]
1254
+ :type remove_name: typing.Union[bool, typing.Any]
1401
1255
  :param remove_active: remove_active
1402
- :type remove_active: typing.Optional[typing.Union[bool, typing.Any]]
1256
+ :type remove_active: typing.Union[bool, typing.Any]
1403
1257
  """
1404
1258
 
1405
1259
  ...
1406
1260
 
1407
1261
  def node_copy_color(
1408
- override_context: typing.Optional[
1409
- typing.Union[typing.Dict, "bpy.types.Context"]
1410
- ] = None,
1411
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1412
- undo: typing.Optional[bool] = None,
1262
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1263
+ execution_context: typing.Union[str, int] = None,
1264
+ undo: bool = None,
1413
1265
  ):
1414
1266
  """Copy color to all selected nodes
1415
1267
 
1416
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1417
- :type execution_context: typing.Optional[typing.Union[str, int]]
1418
- :type undo: typing.Optional[bool]
1268
+ :type override_context: typing.Union[dict, bpy.types.Context]
1269
+ :type execution_context: typing.Union[str, int]
1270
+ :type undo: bool
1419
1271
  """
1420
1272
 
1421
1273
  ...
1422
1274
 
1423
1275
  def options_toggle(
1424
- override_context: typing.Optional[
1425
- typing.Union[typing.Dict, "bpy.types.Context"]
1426
- ] = None,
1427
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1428
- undo: typing.Optional[bool] = None,
1276
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1277
+ execution_context: typing.Union[str, int] = None,
1278
+ undo: bool = None,
1429
1279
  ):
1430
1280
  """Toggle option buttons display for selected nodes
1431
1281
 
1432
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1433
- :type execution_context: typing.Optional[typing.Union[str, int]]
1434
- :type undo: typing.Optional[bool]
1282
+ :type override_context: typing.Union[dict, bpy.types.Context]
1283
+ :type execution_context: typing.Union[str, int]
1284
+ :type undo: bool
1435
1285
  """
1436
1286
 
1437
1287
  ...
1438
1288
 
1439
1289
  def output_file_add_socket(
1440
- override_context: typing.Optional[
1441
- typing.Union[typing.Dict, "bpy.types.Context"]
1442
- ] = None,
1443
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1444
- undo: typing.Optional[bool] = None,
1445
- *,
1290
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1291
+ execution_context: typing.Union[str, int] = None,
1292
+ undo: bool = None,
1446
1293
  file_path: typing.Union[str, typing.Any] = "Image",
1447
1294
  ):
1448
1295
  """Add a new input to a file output node
1449
1296
 
1450
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1451
- :type execution_context: typing.Optional[typing.Union[str, int]]
1452
- :type undo: typing.Optional[bool]
1297
+ :type override_context: typing.Union[dict, bpy.types.Context]
1298
+ :type execution_context: typing.Union[str, int]
1299
+ :type undo: bool
1453
1300
  :param file_path: File Path, Subpath of the output file
1454
1301
  :type file_path: typing.Union[str, typing.Any]
1455
1302
  """
@@ -1457,636 +1304,597 @@ def output_file_add_socket(
1457
1304
  ...
1458
1305
 
1459
1306
  def output_file_move_active_socket(
1460
- override_context: typing.Optional[
1461
- typing.Union[typing.Dict, "bpy.types.Context"]
1462
- ] = None,
1463
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1464
- undo: typing.Optional[bool] = None,
1465
- *,
1466
- direction: typing.Optional[typing.Any] = "DOWN",
1307
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1308
+ execution_context: typing.Union[str, int] = None,
1309
+ undo: bool = None,
1310
+ direction: typing.Any = "DOWN",
1467
1311
  ):
1468
1312
  """Move the active input of a file output node up or down the list
1469
1313
 
1470
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1471
- :type execution_context: typing.Optional[typing.Union[str, int]]
1472
- :type undo: typing.Optional[bool]
1314
+ :type override_context: typing.Union[dict, bpy.types.Context]
1315
+ :type execution_context: typing.Union[str, int]
1316
+ :type undo: bool
1473
1317
  :param direction: Direction
1474
- :type direction: typing.Optional[typing.Any]
1318
+ :type direction: typing.Any
1475
1319
  """
1476
1320
 
1477
1321
  ...
1478
1322
 
1479
1323
  def output_file_remove_active_socket(
1480
- override_context: typing.Optional[
1481
- typing.Union[typing.Dict, "bpy.types.Context"]
1482
- ] = None,
1483
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1484
- undo: typing.Optional[bool] = None,
1324
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1325
+ execution_context: typing.Union[str, int] = None,
1326
+ undo: bool = None,
1485
1327
  ):
1486
1328
  """Remove the active input from a file output node
1487
1329
 
1488
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1489
- :type execution_context: typing.Optional[typing.Union[str, int]]
1490
- :type undo: typing.Optional[bool]
1330
+ :type override_context: typing.Union[dict, bpy.types.Context]
1331
+ :type execution_context: typing.Union[str, int]
1332
+ :type undo: bool
1491
1333
  """
1492
1334
 
1493
1335
  ...
1494
1336
 
1495
1337
  def parent_set(
1496
- override_context: typing.Optional[
1497
- typing.Union[typing.Dict, "bpy.types.Context"]
1498
- ] = None,
1499
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1500
- undo: typing.Optional[bool] = None,
1338
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1339
+ execution_context: typing.Union[str, int] = None,
1340
+ undo: bool = None,
1501
1341
  ):
1502
1342
  """Attach selected nodes
1503
1343
 
1504
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1505
- :type execution_context: typing.Optional[typing.Union[str, int]]
1506
- :type undo: typing.Optional[bool]
1344
+ :type override_context: typing.Union[dict, bpy.types.Context]
1345
+ :type execution_context: typing.Union[str, int]
1346
+ :type undo: bool
1507
1347
  """
1508
1348
 
1509
1349
  ...
1510
1350
 
1511
1351
  def preview_toggle(
1512
- override_context: typing.Optional[
1513
- typing.Union[typing.Dict, "bpy.types.Context"]
1514
- ] = None,
1515
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1516
- undo: typing.Optional[bool] = None,
1352
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1353
+ execution_context: typing.Union[str, int] = None,
1354
+ undo: bool = None,
1517
1355
  ):
1518
1356
  """Toggle preview display for selected nodes
1519
1357
 
1520
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1521
- :type execution_context: typing.Optional[typing.Union[str, int]]
1522
- :type undo: typing.Optional[bool]
1358
+ :type override_context: typing.Union[dict, bpy.types.Context]
1359
+ :type execution_context: typing.Union[str, int]
1360
+ :type undo: bool
1523
1361
  """
1524
1362
 
1525
1363
  ...
1526
1364
 
1527
1365
  def read_viewlayers(
1528
- override_context: typing.Optional[
1529
- typing.Union[typing.Dict, "bpy.types.Context"]
1530
- ] = None,
1531
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1532
- undo: typing.Optional[bool] = None,
1366
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1367
+ execution_context: typing.Union[str, int] = None,
1368
+ undo: bool = None,
1533
1369
  ):
1534
1370
  """Read all render layers of all used scenes
1535
1371
 
1536
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1537
- :type execution_context: typing.Optional[typing.Union[str, int]]
1538
- :type undo: typing.Optional[bool]
1372
+ :type override_context: typing.Union[dict, bpy.types.Context]
1373
+ :type execution_context: typing.Union[str, int]
1374
+ :type undo: bool
1539
1375
  """
1540
1376
 
1541
1377
  ...
1542
1378
 
1543
1379
  def render_changed(
1544
- override_context: typing.Optional[
1545
- typing.Union[typing.Dict, "bpy.types.Context"]
1546
- ] = None,
1547
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1548
- undo: typing.Optional[bool] = None,
1380
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1381
+ execution_context: typing.Union[str, int] = None,
1382
+ undo: bool = None,
1549
1383
  ):
1550
1384
  """Render current scene, when input node's layer has been changed
1551
1385
 
1552
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1553
- :type execution_context: typing.Optional[typing.Union[str, int]]
1554
- :type undo: typing.Optional[bool]
1386
+ :type override_context: typing.Union[dict, bpy.types.Context]
1387
+ :type execution_context: typing.Union[str, int]
1388
+ :type undo: bool
1555
1389
  """
1556
1390
 
1557
1391
  ...
1558
1392
 
1559
1393
  def repeat_zone_item_add(
1560
- override_context: typing.Optional[
1561
- typing.Union[typing.Dict, "bpy.types.Context"]
1562
- ] = None,
1563
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1564
- undo: typing.Optional[bool] = None,
1394
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1395
+ execution_context: typing.Union[str, int] = None,
1396
+ undo: bool = None,
1565
1397
  ):
1566
- """Add a repeat item to the repeat zone :File: `startup/bl_operators/geometry_nodes.py\:360 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L360>`__
1398
+ """Add a repeat item to the repeat zone
1567
1399
 
1568
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1569
- :type execution_context: typing.Optional[typing.Union[str, int]]
1570
- :type undo: typing.Optional[bool]
1400
+ :type override_context: typing.Union[dict, bpy.types.Context]
1401
+ :type execution_context: typing.Union[str, int]
1402
+ :type undo: bool
1571
1403
  """
1572
1404
 
1573
1405
  ...
1574
1406
 
1575
1407
  def repeat_zone_item_move(
1576
- override_context: typing.Optional[
1577
- typing.Union[typing.Dict, "bpy.types.Context"]
1578
- ] = None,
1579
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1580
- undo: typing.Optional[bool] = None,
1581
- *,
1582
- direction: typing.Optional[typing.Any] = "UP",
1583
- ):
1584
- """Move a repeat item up or down in the list :File: `startup/bl_operators/geometry_nodes.py\:406 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L406>`__
1585
-
1586
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1587
- :type execution_context: typing.Optional[typing.Union[str, int]]
1588
- :type undo: typing.Optional[bool]
1408
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1409
+ execution_context: typing.Union[str, int] = None,
1410
+ undo: bool = None,
1411
+ direction: typing.Any = "UP",
1412
+ ):
1413
+ """Move a repeat item up or down in the list
1414
+
1415
+ :type override_context: typing.Union[dict, bpy.types.Context]
1416
+ :type execution_context: typing.Union[str, int]
1417
+ :type undo: bool
1589
1418
  :param direction: Direction
1590
- :type direction: typing.Optional[typing.Any]
1419
+ :type direction: typing.Any
1591
1420
  """
1592
1421
 
1593
1422
  ...
1594
1423
 
1595
1424
  def repeat_zone_item_remove(
1596
- override_context: typing.Optional[
1597
- typing.Union[typing.Dict, "bpy.types.Context"]
1598
- ] = None,
1599
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1600
- undo: typing.Optional[bool] = None,
1425
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1426
+ execution_context: typing.Union[str, int] = None,
1427
+ undo: bool = None,
1601
1428
  ):
1602
- """Remove a repeat item from the repeat zone :File: `startup/bl_operators/geometry_nodes.py\:385 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L385>`__
1429
+ """Remove a repeat item from the repeat zone
1603
1430
 
1604
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1605
- :type execution_context: typing.Optional[typing.Union[str, int]]
1606
- :type undo: typing.Optional[bool]
1431
+ :type override_context: typing.Union[dict, bpy.types.Context]
1432
+ :type execution_context: typing.Union[str, int]
1433
+ :type undo: bool
1607
1434
  """
1608
1435
 
1609
1436
  ...
1610
1437
 
1611
1438
  def resize(
1612
- override_context: typing.Optional[
1613
- typing.Union[typing.Dict, "bpy.types.Context"]
1614
- ] = None,
1615
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1616
- undo: typing.Optional[bool] = None,
1439
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1440
+ execution_context: typing.Union[str, int] = None,
1441
+ undo: bool = None,
1617
1442
  ):
1618
1443
  """Resize a node
1619
1444
 
1620
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1621
- :type execution_context: typing.Optional[typing.Union[str, int]]
1622
- :type undo: typing.Optional[bool]
1445
+ :type override_context: typing.Union[dict, bpy.types.Context]
1446
+ :type execution_context: typing.Union[str, int]
1447
+ :type undo: bool
1623
1448
  """
1624
1449
 
1625
1450
  ...
1626
1451
 
1627
1452
  def select(
1628
- override_context: typing.Optional[
1629
- typing.Union[typing.Dict, "bpy.types.Context"]
1630
- ] = None,
1631
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1632
- undo: typing.Optional[bool] = None,
1633
- *,
1634
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
1635
- deselect: typing.Optional[typing.Union[bool, typing.Any]] = False,
1636
- toggle: typing.Optional[typing.Union[bool, typing.Any]] = False,
1637
- deselect_all: typing.Optional[typing.Union[bool, typing.Any]] = False,
1638
- select_passthrough: typing.Optional[typing.Union[bool, typing.Any]] = False,
1639
- location: typing.Optional[typing.Any] = (0, 0),
1640
- socket_select: typing.Optional[typing.Union[bool, typing.Any]] = False,
1641
- clear_viewer: typing.Optional[typing.Union[bool, typing.Any]] = False,
1453
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1454
+ execution_context: typing.Union[str, int] = None,
1455
+ undo: bool = None,
1456
+ extend: typing.Union[bool, typing.Any] = False,
1457
+ deselect: typing.Union[bool, typing.Any] = False,
1458
+ toggle: typing.Union[bool, typing.Any] = False,
1459
+ deselect_all: typing.Union[bool, typing.Any] = False,
1460
+ select_passthrough: typing.Union[bool, typing.Any] = False,
1461
+ location: typing.Any = (0, 0),
1462
+ socket_select: typing.Union[bool, typing.Any] = False,
1463
+ clear_viewer: typing.Union[bool, typing.Any] = False,
1642
1464
  ):
1643
1465
  """Select the node under the cursor
1644
1466
 
1645
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1646
- :type execution_context: typing.Optional[typing.Union[str, int]]
1647
- :type undo: typing.Optional[bool]
1467
+ :type override_context: typing.Union[dict, bpy.types.Context]
1468
+ :type execution_context: typing.Union[str, int]
1469
+ :type undo: bool
1648
1470
  :param extend: Extend, Extend selection instead of deselecting everything first
1649
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1471
+ :type extend: typing.Union[bool, typing.Any]
1650
1472
  :param deselect: Deselect, Remove from selection
1651
- :type deselect: typing.Optional[typing.Union[bool, typing.Any]]
1473
+ :type deselect: typing.Union[bool, typing.Any]
1652
1474
  :param toggle: Toggle Selection, Toggle the selection
1653
- :type toggle: typing.Optional[typing.Union[bool, typing.Any]]
1475
+ :type toggle: typing.Union[bool, typing.Any]
1654
1476
  :param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
1655
- :type deselect_all: typing.Optional[typing.Union[bool, typing.Any]]
1477
+ :type deselect_all: typing.Union[bool, typing.Any]
1656
1478
  :param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
1657
- :type select_passthrough: typing.Optional[typing.Union[bool, typing.Any]]
1479
+ :type select_passthrough: typing.Union[bool, typing.Any]
1658
1480
  :param location: Location, Mouse location
1659
- :type location: typing.Optional[typing.Any]
1481
+ :type location: typing.Any
1660
1482
  :param socket_select: Socket Select
1661
- :type socket_select: typing.Optional[typing.Union[bool, typing.Any]]
1483
+ :type socket_select: typing.Union[bool, typing.Any]
1662
1484
  :param clear_viewer: Clear Viewer, Deactivate geometry nodes viewer when clicking in empty space
1663
- :type clear_viewer: typing.Optional[typing.Union[bool, typing.Any]]
1485
+ :type clear_viewer: typing.Union[bool, typing.Any]
1664
1486
  """
1665
1487
 
1666
1488
  ...
1667
1489
 
1668
1490
  def select_all(
1669
- override_context: typing.Optional[
1670
- typing.Union[typing.Dict, "bpy.types.Context"]
1671
- ] = None,
1672
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1673
- undo: typing.Optional[bool] = None,
1674
- *,
1675
- action: typing.Optional[typing.Any] = "TOGGLE",
1491
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1492
+ execution_context: typing.Union[str, int] = None,
1493
+ undo: bool = None,
1494
+ action: typing.Any = "TOGGLE",
1676
1495
  ):
1677
1496
  """(De)select all nodes
1678
1497
 
1679
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1680
- :type execution_context: typing.Optional[typing.Union[str, int]]
1681
- :type undo: typing.Optional[bool]
1682
- :param action: Action, Selection action to execute * ``TOGGLE`` Toggle -- Toggle selection for all elements. * ``SELECT`` Select -- Select all elements. * ``DESELECT`` Deselect -- Deselect all elements. * ``INVERT`` Invert -- Invert selection of all elements.
1683
- :type action: typing.Optional[typing.Any]
1498
+ :type override_context: typing.Union[dict, bpy.types.Context]
1499
+ :type execution_context: typing.Union[str, int]
1500
+ :type undo: bool
1501
+ :param action: Action, Selection action to execute
1502
+
1503
+ TOGGLE
1504
+ Toggle -- Toggle selection for all elements.
1505
+
1506
+ SELECT
1507
+ Select -- Select all elements.
1508
+
1509
+ DESELECT
1510
+ Deselect -- Deselect all elements.
1511
+
1512
+ INVERT
1513
+ Invert -- Invert selection of all elements.
1514
+ :type action: typing.Any
1684
1515
  """
1685
1516
 
1686
1517
  ...
1687
1518
 
1688
1519
  def select_box(
1689
- override_context: typing.Optional[
1690
- typing.Union[typing.Dict, "bpy.types.Context"]
1691
- ] = None,
1692
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1693
- undo: typing.Optional[bool] = None,
1694
- *,
1695
- tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
1696
- xmin: typing.Optional[typing.Any] = 0,
1697
- xmax: typing.Optional[typing.Any] = 0,
1698
- ymin: typing.Optional[typing.Any] = 0,
1699
- ymax: typing.Optional[typing.Any] = 0,
1700
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
1701
- mode: typing.Optional[typing.Any] = "SET",
1520
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1521
+ execution_context: typing.Union[str, int] = None,
1522
+ undo: bool = None,
1523
+ tweak: typing.Union[bool, typing.Any] = False,
1524
+ xmin: typing.Any = 0,
1525
+ xmax: typing.Any = 0,
1526
+ ymin: typing.Any = 0,
1527
+ ymax: typing.Any = 0,
1528
+ wait_for_input: typing.Union[bool, typing.Any] = True,
1529
+ mode: typing.Any = "SET",
1702
1530
  ):
1703
1531
  """Use box selection to select nodes
1704
1532
 
1705
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1706
- :type execution_context: typing.Optional[typing.Union[str, int]]
1707
- :type undo: typing.Optional[bool]
1708
- :param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
1709
- :type tweak: typing.Optional[typing.Union[bool, typing.Any]]
1710
- :param xmin: X Min
1711
- :type xmin: typing.Optional[typing.Any]
1712
- :param xmax: X Max
1713
- :type xmax: typing.Optional[typing.Any]
1714
- :param ymin: Y Min
1715
- :type ymin: typing.Optional[typing.Any]
1716
- :param ymax: Y Max
1717
- :type ymax: typing.Optional[typing.Any]
1718
- :param wait_for_input: Wait for Input
1719
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
1720
- :param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
1721
- :type mode: typing.Optional[typing.Any]
1533
+ :type override_context: typing.Union[dict, bpy.types.Context]
1534
+ :type execution_context: typing.Union[str, int]
1535
+ :type undo: bool
1536
+ :param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
1537
+ :type tweak: typing.Union[bool, typing.Any]
1538
+ :param xmin: X Min
1539
+ :type xmin: typing.Any
1540
+ :param xmax: X Max
1541
+ :type xmax: typing.Any
1542
+ :param ymin: Y Min
1543
+ :type ymin: typing.Any
1544
+ :param ymax: Y Max
1545
+ :type ymax: typing.Any
1546
+ :param wait_for_input: Wait for Input
1547
+ :type wait_for_input: typing.Union[bool, typing.Any]
1548
+ :param mode: Mode
1549
+
1550
+ SET
1551
+ Set -- Set a new selection.
1552
+
1553
+ ADD
1554
+ Extend -- Extend existing selection.
1555
+
1556
+ SUB
1557
+ Subtract -- Subtract existing selection.
1558
+ :type mode: typing.Any
1722
1559
  """
1723
1560
 
1724
1561
  ...
1725
1562
 
1726
1563
  def select_circle(
1727
- override_context: typing.Optional[
1728
- typing.Union[typing.Dict, "bpy.types.Context"]
1729
- ] = None,
1730
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1731
- undo: typing.Optional[bool] = None,
1732
- *,
1733
- x: typing.Optional[typing.Any] = 0,
1734
- y: typing.Optional[typing.Any] = 0,
1735
- radius: typing.Optional[typing.Any] = 25,
1736
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
1737
- mode: typing.Optional[typing.Any] = "SET",
1564
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1565
+ execution_context: typing.Union[str, int] = None,
1566
+ undo: bool = None,
1567
+ x: typing.Any = 0,
1568
+ y: typing.Any = 0,
1569
+ radius: typing.Any = 25,
1570
+ wait_for_input: typing.Union[bool, typing.Any] = True,
1571
+ mode: typing.Any = "SET",
1738
1572
  ):
1739
1573
  """Use circle selection to select nodes
1740
1574
 
1741
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1742
- :type execution_context: typing.Optional[typing.Union[str, int]]
1743
- :type undo: typing.Optional[bool]
1744
- :param x: X
1745
- :type x: typing.Optional[typing.Any]
1746
- :param y: Y
1747
- :type y: typing.Optional[typing.Any]
1748
- :param radius: Radius
1749
- :type radius: typing.Optional[typing.Any]
1750
- :param wait_for_input: Wait for Input
1751
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
1752
- :param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
1753
- :type mode: typing.Optional[typing.Any]
1575
+ :type override_context: typing.Union[dict, bpy.types.Context]
1576
+ :type execution_context: typing.Union[str, int]
1577
+ :type undo: bool
1578
+ :param x: X
1579
+ :type x: typing.Any
1580
+ :param y: Y
1581
+ :type y: typing.Any
1582
+ :param radius: Radius
1583
+ :type radius: typing.Any
1584
+ :param wait_for_input: Wait for Input
1585
+ :type wait_for_input: typing.Union[bool, typing.Any]
1586
+ :param mode: Mode
1587
+
1588
+ SET
1589
+ Set -- Set a new selection.
1590
+
1591
+ ADD
1592
+ Extend -- Extend existing selection.
1593
+
1594
+ SUB
1595
+ Subtract -- Subtract existing selection.
1596
+ :type mode: typing.Any
1754
1597
  """
1755
1598
 
1756
1599
  ...
1757
1600
 
1758
1601
  def select_grouped(
1759
- override_context: typing.Optional[
1760
- typing.Union[typing.Dict, "bpy.types.Context"]
1761
- ] = None,
1762
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1763
- undo: typing.Optional[bool] = None,
1764
- *,
1765
- extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
1766
- type: typing.Optional[typing.Any] = "TYPE",
1602
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1603
+ execution_context: typing.Union[str, int] = None,
1604
+ undo: bool = None,
1605
+ extend: typing.Union[bool, typing.Any] = False,
1606
+ type: typing.Any = "TYPE",
1767
1607
  ):
1768
1608
  """Select nodes with similar properties
1769
1609
 
1770
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1771
- :type execution_context: typing.Optional[typing.Union[str, int]]
1772
- :type undo: typing.Optional[bool]
1610
+ :type override_context: typing.Union[dict, bpy.types.Context]
1611
+ :type execution_context: typing.Union[str, int]
1612
+ :type undo: bool
1773
1613
  :param extend: Extend, Extend selection instead of deselecting everything first
1774
- :type extend: typing.Optional[typing.Union[bool, typing.Any]]
1614
+ :type extend: typing.Union[bool, typing.Any]
1775
1615
  :param type: Type
1776
- :type type: typing.Optional[typing.Any]
1616
+ :type type: typing.Any
1777
1617
  """
1778
1618
 
1779
1619
  ...
1780
1620
 
1781
1621
  def select_lasso(
1782
- override_context: typing.Optional[
1783
- typing.Union[typing.Dict, "bpy.types.Context"]
1784
- ] = None,
1785
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1786
- undo: typing.Optional[bool] = None,
1787
- *,
1788
- tweak: typing.Optional[typing.Union[bool, typing.Any]] = False,
1789
- path: typing.Optional[
1790
- bpy.types.bpy_prop_collection["bpy.types.OperatorMousePath"]
1791
- ] = None,
1792
- mode: typing.Optional[typing.Any] = "SET",
1622
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1623
+ execution_context: typing.Union[str, int] = None,
1624
+ undo: bool = None,
1625
+ tweak: typing.Union[bool, typing.Any] = False,
1626
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
1627
+ mode: typing.Any = "SET",
1793
1628
  ):
1794
1629
  """Select nodes using lasso selection
1795
1630
 
1796
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1797
- :type execution_context: typing.Optional[typing.Union[str, int]]
1798
- :type undo: typing.Optional[bool]
1799
- :param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
1800
- :type tweak: typing.Optional[typing.Union[bool, typing.Any]]
1801
- :param path: Path
1802
- :type path: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorMousePath']]
1803
- :param mode: Mode * ``SET`` Set -- Set a new selection. * ``ADD`` Extend -- Extend existing selection. * ``SUB`` Subtract -- Subtract existing selection.
1804
- :type mode: typing.Optional[typing.Any]
1631
+ :type override_context: typing.Union[dict, bpy.types.Context]
1632
+ :type execution_context: typing.Union[str, int]
1633
+ :type undo: bool
1634
+ :param tweak: Tweak, Only activate when mouse is not over a node (useful for tweak gesture)
1635
+ :type tweak: typing.Union[bool, typing.Any]
1636
+ :param path: Path
1637
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
1638
+ :param mode: Mode
1639
+
1640
+ SET
1641
+ Set -- Set a new selection.
1642
+
1643
+ ADD
1644
+ Extend -- Extend existing selection.
1645
+
1646
+ SUB
1647
+ Subtract -- Subtract existing selection.
1648
+ :type mode: typing.Any
1805
1649
  """
1806
1650
 
1807
1651
  ...
1808
1652
 
1809
1653
  def select_link_viewer(
1810
- override_context: typing.Optional[
1811
- typing.Union[typing.Dict, "bpy.types.Context"]
1812
- ] = None,
1813
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1814
- undo: typing.Optional[bool] = None,
1815
- *,
1816
- NODE_OT_select: typing.Optional["select"] = None,
1817
- NODE_OT_link_viewer: typing.Optional["link_viewer"] = None,
1654
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1655
+ execution_context: typing.Union[str, int] = None,
1656
+ undo: bool = None,
1657
+ NODE_OT_select: select = None,
1658
+ NODE_OT_link_viewer: link_viewer = None,
1818
1659
  ):
1819
1660
  """Select node and link it to a viewer node
1820
1661
 
1821
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1822
- :type execution_context: typing.Optional[typing.Union[str, int]]
1823
- :type undo: typing.Optional[bool]
1662
+ :type override_context: typing.Union[dict, bpy.types.Context]
1663
+ :type execution_context: typing.Union[str, int]
1664
+ :type undo: bool
1824
1665
  :param NODE_OT_select: Select, Select the node under the cursor
1825
- :type NODE_OT_select: typing.Optional['select']
1666
+ :type NODE_OT_select: select
1826
1667
  :param NODE_OT_link_viewer: Link to Viewer Node, Link to viewer node
1827
- :type NODE_OT_link_viewer: typing.Optional['link_viewer']
1668
+ :type NODE_OT_link_viewer: link_viewer
1828
1669
  """
1829
1670
 
1830
1671
  ...
1831
1672
 
1832
1673
  def select_linked_from(
1833
- override_context: typing.Optional[
1834
- typing.Union[typing.Dict, "bpy.types.Context"]
1835
- ] = None,
1836
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1837
- undo: typing.Optional[bool] = None,
1674
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1675
+ execution_context: typing.Union[str, int] = None,
1676
+ undo: bool = None,
1838
1677
  ):
1839
1678
  """Select nodes linked from the selected ones
1840
1679
 
1841
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1842
- :type execution_context: typing.Optional[typing.Union[str, int]]
1843
- :type undo: typing.Optional[bool]
1680
+ :type override_context: typing.Union[dict, bpy.types.Context]
1681
+ :type execution_context: typing.Union[str, int]
1682
+ :type undo: bool
1844
1683
  """
1845
1684
 
1846
1685
  ...
1847
1686
 
1848
1687
  def select_linked_to(
1849
- override_context: typing.Optional[
1850
- typing.Union[typing.Dict, "bpy.types.Context"]
1851
- ] = None,
1852
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1853
- undo: typing.Optional[bool] = None,
1688
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1689
+ execution_context: typing.Union[str, int] = None,
1690
+ undo: bool = None,
1854
1691
  ):
1855
1692
  """Select nodes linked to the selected ones
1856
1693
 
1857
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1858
- :type execution_context: typing.Optional[typing.Union[str, int]]
1859
- :type undo: typing.Optional[bool]
1694
+ :type override_context: typing.Union[dict, bpy.types.Context]
1695
+ :type execution_context: typing.Union[str, int]
1696
+ :type undo: bool
1860
1697
  """
1861
1698
 
1862
1699
  ...
1863
1700
 
1864
1701
  def select_same_type_step(
1865
- override_context: typing.Optional[
1866
- typing.Union[typing.Dict, "bpy.types.Context"]
1867
- ] = None,
1868
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1869
- undo: typing.Optional[bool] = None,
1870
- *,
1871
- prev: typing.Optional[typing.Union[bool, typing.Any]] = False,
1702
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1703
+ execution_context: typing.Union[str, int] = None,
1704
+ undo: bool = None,
1705
+ prev: typing.Union[bool, typing.Any] = False,
1872
1706
  ):
1873
1707
  """Activate and view same node type, step by step
1874
1708
 
1875
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1876
- :type execution_context: typing.Optional[typing.Union[str, int]]
1877
- :type undo: typing.Optional[bool]
1709
+ :type override_context: typing.Union[dict, bpy.types.Context]
1710
+ :type execution_context: typing.Union[str, int]
1711
+ :type undo: bool
1878
1712
  :param prev: Previous
1879
- :type prev: typing.Optional[typing.Union[bool, typing.Any]]
1713
+ :type prev: typing.Union[bool, typing.Any]
1880
1714
  """
1881
1715
 
1882
1716
  ...
1883
1717
 
1884
1718
  def shader_script_update(
1885
- override_context: typing.Optional[
1886
- typing.Union[typing.Dict, "bpy.types.Context"]
1887
- ] = None,
1888
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1889
- undo: typing.Optional[bool] = None,
1719
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1720
+ execution_context: typing.Union[str, int] = None,
1721
+ undo: bool = None,
1890
1722
  ):
1891
1723
  """Update shader script node with new sockets and options from the script
1892
1724
 
1893
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1894
- :type execution_context: typing.Optional[typing.Union[str, int]]
1895
- :type undo: typing.Optional[bool]
1725
+ :type override_context: typing.Union[dict, bpy.types.Context]
1726
+ :type execution_context: typing.Union[str, int]
1727
+ :type undo: bool
1896
1728
  """
1897
1729
 
1898
1730
  ...
1899
1731
 
1900
1732
  def simulation_zone_item_add(
1901
- override_context: typing.Optional[
1902
- typing.Union[typing.Dict, "bpy.types.Context"]
1903
- ] = None,
1904
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1905
- undo: typing.Optional[bool] = None,
1733
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1734
+ execution_context: typing.Union[str, int] = None,
1735
+ undo: bool = None,
1906
1736
  ):
1907
- """Add a state item to the simulation zone :File: `startup/bl_operators/geometry_nodes.py\:360 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L360>`__
1737
+ """Add a state item to the simulation zone
1908
1738
 
1909
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1910
- :type execution_context: typing.Optional[typing.Union[str, int]]
1911
- :type undo: typing.Optional[bool]
1739
+ :type override_context: typing.Union[dict, bpy.types.Context]
1740
+ :type execution_context: typing.Union[str, int]
1741
+ :type undo: bool
1912
1742
  """
1913
1743
 
1914
1744
  ...
1915
1745
 
1916
1746
  def simulation_zone_item_move(
1917
- override_context: typing.Optional[
1918
- typing.Union[typing.Dict, "bpy.types.Context"]
1919
- ] = None,
1920
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1921
- undo: typing.Optional[bool] = None,
1922
- *,
1923
- direction: typing.Optional[typing.Any] = "UP",
1924
- ):
1925
- """Move a simulation state item up or down in the list :File: `startup/bl_operators/geometry_nodes.py\:406 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L406>`__
1926
-
1927
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1928
- :type execution_context: typing.Optional[typing.Union[str, int]]
1929
- :type undo: typing.Optional[bool]
1747
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1748
+ execution_context: typing.Union[str, int] = None,
1749
+ undo: bool = None,
1750
+ direction: typing.Any = "UP",
1751
+ ):
1752
+ """Move a simulation state item up or down in the list
1753
+
1754
+ :type override_context: typing.Union[dict, bpy.types.Context]
1755
+ :type execution_context: typing.Union[str, int]
1756
+ :type undo: bool
1930
1757
  :param direction: Direction
1931
- :type direction: typing.Optional[typing.Any]
1758
+ :type direction: typing.Any
1932
1759
  """
1933
1760
 
1934
1761
  ...
1935
1762
 
1936
1763
  def simulation_zone_item_remove(
1937
- override_context: typing.Optional[
1938
- typing.Union[typing.Dict, "bpy.types.Context"]
1939
- ] = None,
1940
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1941
- undo: typing.Optional[bool] = None,
1764
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1765
+ execution_context: typing.Union[str, int] = None,
1766
+ undo: bool = None,
1942
1767
  ):
1943
- """Remove a state item from the simulation zone :File: `startup/bl_operators/geometry_nodes.py\:385 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/geometry_nodes.py#L385>`__
1768
+ """Remove a state item from the simulation zone
1944
1769
 
1945
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1946
- :type execution_context: typing.Optional[typing.Union[str, int]]
1947
- :type undo: typing.Optional[bool]
1770
+ :type override_context: typing.Union[dict, bpy.types.Context]
1771
+ :type execution_context: typing.Union[str, int]
1772
+ :type undo: bool
1948
1773
  """
1949
1774
 
1950
1775
  ...
1951
1776
 
1952
1777
  def switch_view_update(
1953
- override_context: typing.Optional[
1954
- typing.Union[typing.Dict, "bpy.types.Context"]
1955
- ] = None,
1956
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1957
- undo: typing.Optional[bool] = None,
1778
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1779
+ execution_context: typing.Union[str, int] = None,
1780
+ undo: bool = None,
1958
1781
  ):
1959
1782
  """Update views of selected node
1960
1783
 
1961
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1962
- :type execution_context: typing.Optional[typing.Union[str, int]]
1963
- :type undo: typing.Optional[bool]
1784
+ :type override_context: typing.Union[dict, bpy.types.Context]
1785
+ :type execution_context: typing.Union[str, int]
1786
+ :type undo: bool
1964
1787
  """
1965
1788
 
1966
1789
  ...
1967
1790
 
1968
1791
  def translate_attach(
1969
- override_context: typing.Optional[
1970
- typing.Union[typing.Dict, "bpy.types.Context"]
1971
- ] = None,
1972
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1973
- undo: typing.Optional[bool] = None,
1974
- *,
1975
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
1976
- NODE_OT_attach: typing.Optional["attach"] = None,
1792
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1793
+ execution_context: typing.Union[str, int] = None,
1794
+ undo: bool = None,
1795
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
1796
+ NODE_OT_attach: attach = None,
1977
1797
  ):
1978
1798
  """Move nodes and attach to frame
1979
1799
 
1980
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
1981
- :type execution_context: typing.Optional[typing.Union[str, int]]
1982
- :type undo: typing.Optional[bool]
1800
+ :type override_context: typing.Union[dict, bpy.types.Context]
1801
+ :type execution_context: typing.Union[str, int]
1802
+ :type undo: bool
1983
1803
  :param TRANSFORM_OT_translate: Move, Move selected items
1984
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
1804
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
1985
1805
  :param NODE_OT_attach: Attach Nodes, Attach active node to a frame
1986
- :type NODE_OT_attach: typing.Optional['attach']
1806
+ :type NODE_OT_attach: attach
1987
1807
  """
1988
1808
 
1989
1809
  ...
1990
1810
 
1991
1811
  def translate_attach_remove_on_cancel(
1992
- override_context: typing.Optional[
1993
- typing.Union[typing.Dict, "bpy.types.Context"]
1994
- ] = None,
1995
- execution_context: typing.Optional[typing.Union[str, int]] = None,
1996
- undo: typing.Optional[bool] = None,
1997
- *,
1998
- TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
1999
- NODE_OT_attach: typing.Optional["attach"] = None,
1812
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1813
+ execution_context: typing.Union[str, int] = None,
1814
+ undo: bool = None,
1815
+ TRANSFORM_OT_translate: bpy.ops.transform.translate = None,
1816
+ NODE_OT_attach: attach = None,
2000
1817
  ):
2001
1818
  """Move nodes and attach to frame
2002
1819
 
2003
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
2004
- :type execution_context: typing.Optional[typing.Union[str, int]]
2005
- :type undo: typing.Optional[bool]
1820
+ :type override_context: typing.Union[dict, bpy.types.Context]
1821
+ :type execution_context: typing.Union[str, int]
1822
+ :type undo: bool
2006
1823
  :param TRANSFORM_OT_translate: Move, Move selected items
2007
- :type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
1824
+ :type TRANSFORM_OT_translate: bpy.ops.transform.translate
2008
1825
  :param NODE_OT_attach: Attach Nodes, Attach active node to a frame
2009
- :type NODE_OT_attach: typing.Optional['attach']
1826
+ :type NODE_OT_attach: attach
2010
1827
  """
2011
1828
 
2012
1829
  ...
2013
1830
 
2014
1831
  def tree_path_parent(
2015
- override_context: typing.Optional[
2016
- typing.Union[typing.Dict, "bpy.types.Context"]
2017
- ] = None,
2018
- execution_context: typing.Optional[typing.Union[str, int]] = None,
2019
- undo: typing.Optional[bool] = None,
1832
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1833
+ execution_context: typing.Union[str, int] = None,
1834
+ undo: bool = None,
2020
1835
  ):
2021
- """Go to parent node tree :File: `startup/bl_operators/node.py\:256 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/node.py#L256>`__
1836
+ """Go to parent node tree
2022
1837
 
2023
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
2024
- :type execution_context: typing.Optional[typing.Union[str, int]]
2025
- :type undo: typing.Optional[bool]
1838
+ :type override_context: typing.Union[dict, bpy.types.Context]
1839
+ :type execution_context: typing.Union[str, int]
1840
+ :type undo: bool
2026
1841
  """
2027
1842
 
2028
1843
  ...
2029
1844
 
2030
1845
  def view_all(
2031
- override_context: typing.Optional[
2032
- typing.Union[typing.Dict, "bpy.types.Context"]
2033
- ] = None,
2034
- execution_context: typing.Optional[typing.Union[str, int]] = None,
2035
- undo: typing.Optional[bool] = None,
1846
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1847
+ execution_context: typing.Union[str, int] = None,
1848
+ undo: bool = None,
2036
1849
  ):
2037
1850
  """Resize view so you can see all nodes
2038
1851
 
2039
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
2040
- :type execution_context: typing.Optional[typing.Union[str, int]]
2041
- :type undo: typing.Optional[bool]
1852
+ :type override_context: typing.Union[dict, bpy.types.Context]
1853
+ :type execution_context: typing.Union[str, int]
1854
+ :type undo: bool
2042
1855
  """
2043
1856
 
2044
1857
  ...
2045
1858
 
2046
1859
  def view_selected(
2047
- override_context: typing.Optional[
2048
- typing.Union[typing.Dict, "bpy.types.Context"]
2049
- ] = None,
2050
- execution_context: typing.Optional[typing.Union[str, int]] = None,
2051
- undo: typing.Optional[bool] = None,
1860
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1861
+ execution_context: typing.Union[str, int] = None,
1862
+ undo: bool = None,
2052
1863
  ):
2053
1864
  """Resize view so you can see selected nodes
2054
1865
 
2055
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
2056
- :type execution_context: typing.Optional[typing.Union[str, int]]
2057
- :type undo: typing.Optional[bool]
1866
+ :type override_context: typing.Union[dict, bpy.types.Context]
1867
+ :type execution_context: typing.Union[str, int]
1868
+ :type undo: bool
2058
1869
  """
2059
1870
 
2060
1871
  ...
2061
1872
 
2062
1873
  def viewer_border(
2063
- override_context: typing.Optional[
2064
- typing.Union[typing.Dict, "bpy.types.Context"]
2065
- ] = None,
2066
- execution_context: typing.Optional[typing.Union[str, int]] = None,
2067
- undo: typing.Optional[bool] = None,
2068
- *,
2069
- xmin: typing.Optional[typing.Any] = 0,
2070
- xmax: typing.Optional[typing.Any] = 0,
2071
- ymin: typing.Optional[typing.Any] = 0,
2072
- ymax: typing.Optional[typing.Any] = 0,
2073
- wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
1874
+ override_context: typing.Union[dict, bpy.types.Context] = None,
1875
+ execution_context: typing.Union[str, int] = None,
1876
+ undo: bool = None,
1877
+ xmin: typing.Any = 0,
1878
+ xmax: typing.Any = 0,
1879
+ ymin: typing.Any = 0,
1880
+ ymax: typing.Any = 0,
1881
+ wait_for_input: typing.Union[bool, typing.Any] = True,
2074
1882
  ):
2075
1883
  """Set the boundaries for viewer operations
2076
1884
 
2077
- :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
2078
- :type execution_context: typing.Optional[typing.Union[str, int]]
2079
- :type undo: typing.Optional[bool]
1885
+ :type override_context: typing.Union[dict, bpy.types.Context]
1886
+ :type execution_context: typing.Union[str, int]
1887
+ :type undo: bool
2080
1888
  :param xmin: X Min
2081
- :type xmin: typing.Optional[typing.Any]
1889
+ :type xmin: typing.Any
2082
1890
  :param xmax: X Max
2083
- :type xmax: typing.Optional[typing.Any]
1891
+ :type xmax: typing.Any
2084
1892
  :param ymin: Y Min
2085
- :type ymin: typing.Optional[typing.Any]
1893
+ :type ymin: typing.Any
2086
1894
  :param ymax: Y Max
2087
- :type ymax: typing.Optional[typing.Any]
1895
+ :type ymax: typing.Any
2088
1896
  :param wait_for_input: Wait for Input
2089
- :type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
1897
+ :type wait_for_input: typing.Union[bool, typing.Any]
2090
1898
  """
2091
1899
 
2092
1900
  ...