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

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

Potentially problematic release.


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

Files changed (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -3,89 +3,94 @@ import bpy.types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
- def delete(override_context=None, execution_context=None, undo=None):
6
+ def delete(
7
+ override_context: typing.Union[dict, bpy.types.Context] = None,
8
+ execution_context: typing.Union[str, int] = None,
9
+ undo: bool = None,
10
+ ):
7
11
  """Delete active scene
8
12
 
9
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
10
- :type execution_context: typing.Optional[typing.Union[int, str]]
11
- :type undo: typing.Optional[bool]
13
+ :type override_context: typing.Union[dict, bpy.types.Context]
14
+ :type execution_context: typing.Union[str, int]
15
+ :type undo: bool
12
16
  """
13
17
 
14
18
  ...
15
19
 
16
20
  def freestyle_add_edge_marks_to_keying_set(
17
- override_context=None, execution_context=None, undo=None
21
+ override_context: typing.Union[dict, bpy.types.Context] = None,
22
+ execution_context: typing.Union[str, int] = None,
23
+ undo: bool = None,
18
24
  ):
19
25
  """Add the data paths to the Freestyle Edge Mark property of selected edges to the active keying set
20
26
 
21
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
22
- :type execution_context: typing.Optional[typing.Union[int, str]]
23
- :type undo: typing.Optional[bool]
27
+ :type override_context: typing.Union[dict, bpy.types.Context]
28
+ :type execution_context: typing.Union[str, int]
29
+ :type undo: bool
24
30
  """
25
31
 
26
32
  ...
27
33
 
28
34
  def freestyle_add_face_marks_to_keying_set(
29
- override_context=None, execution_context=None, undo=None
35
+ override_context: typing.Union[dict, bpy.types.Context] = None,
36
+ execution_context: typing.Union[str, int] = None,
37
+ undo: bool = None,
30
38
  ):
31
39
  """Add the data paths to the Freestyle Face Mark property of selected polygons to the active keying set
32
40
 
33
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
34
- :type execution_context: typing.Optional[typing.Union[int, str]]
35
- :type undo: typing.Optional[bool]
41
+ :type override_context: typing.Union[dict, bpy.types.Context]
42
+ :type execution_context: typing.Union[str, int]
43
+ :type undo: bool
36
44
  """
37
45
 
38
46
  ...
39
47
 
40
48
  def freestyle_alpha_modifier_add(
41
- override_context=None,
42
- execution_context=None,
43
- undo=None,
44
- *,
45
- type: typing.Optional[typing.Any] = "ALONG_STROKE",
49
+ override_context: typing.Union[dict, bpy.types.Context] = None,
50
+ execution_context: typing.Union[str, int] = None,
51
+ undo: bool = None,
52
+ type: typing.Any = "ALONG_STROKE",
46
53
  ):
47
54
  """Add an alpha transparency modifier to the line style associated with the active lineset
48
55
 
49
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
50
- :type execution_context: typing.Optional[typing.Union[int, str]]
51
- :type undo: typing.Optional[bool]
56
+ :type override_context: typing.Union[dict, bpy.types.Context]
57
+ :type execution_context: typing.Union[str, int]
58
+ :type undo: bool
52
59
  :param type: Type
53
- :type type: typing.Optional[typing.Any]
60
+ :type type: typing.Any
54
61
  """
55
62
 
56
63
  ...
57
64
 
58
65
  def freestyle_color_modifier_add(
59
- override_context=None,
60
- execution_context=None,
61
- undo=None,
62
- *,
63
- type: typing.Optional[typing.Any] = "ALONG_STROKE",
66
+ override_context: typing.Union[dict, bpy.types.Context] = None,
67
+ execution_context: typing.Union[str, int] = None,
68
+ undo: bool = None,
69
+ type: typing.Any = "ALONG_STROKE",
64
70
  ):
65
71
  """Add a line color modifier to the line style associated with the active lineset
66
72
 
67
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
68
- :type execution_context: typing.Optional[typing.Union[int, str]]
69
- :type undo: typing.Optional[bool]
73
+ :type override_context: typing.Union[dict, bpy.types.Context]
74
+ :type execution_context: typing.Union[str, int]
75
+ :type undo: bool
70
76
  :param type: Type
71
- :type type: typing.Optional[typing.Any]
77
+ :type type: typing.Any
72
78
  """
73
79
 
74
80
  ...
75
81
 
76
82
  def freestyle_fill_range_by_selection(
77
- override_context=None,
78
- execution_context=None,
79
- undo=None,
80
- *,
81
- type: typing.Optional[typing.Any] = "COLOR",
83
+ override_context: typing.Union[dict, bpy.types.Context] = None,
84
+ execution_context: typing.Union[str, int] = None,
85
+ undo: bool = None,
86
+ type: typing.Any = "COLOR",
82
87
  name: typing.Union[str, typing.Any] = "",
83
88
  ):
84
89
  """Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object (either a user-specified object or the active camera)
85
90
 
86
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
87
- :type execution_context: typing.Optional[typing.Union[int, str]]
88
- :type undo: typing.Optional[bool]
91
+ :type override_context: typing.Union[dict, bpy.types.Context]
92
+ :type execution_context: typing.Union[str, int]
93
+ :type undo: bool
89
94
  :param type: Type, Type of the modifier to work on
90
95
 
91
96
  COLOR
@@ -96,7 +101,7 @@ def freestyle_fill_range_by_selection(
96
101
 
97
102
  THICKNESS
98
103
  Thickness -- Thickness modifier type.
99
- :type type: typing.Optional[typing.Any]
104
+ :type type: typing.Any
100
105
  :param name: Name, Name of the modifier to work on
101
106
  :type name: typing.Union[str, typing.Any]
102
107
  """
@@ -104,293 +109,324 @@ def freestyle_fill_range_by_selection(
104
109
  ...
105
110
 
106
111
  def freestyle_geometry_modifier_add(
107
- override_context=None,
108
- execution_context=None,
109
- undo=None,
110
- *,
111
- type: typing.Optional[typing.Any] = "2D_OFFSET",
112
+ override_context: typing.Union[dict, bpy.types.Context] = None,
113
+ execution_context: typing.Union[str, int] = None,
114
+ undo: bool = None,
115
+ type: typing.Any = "2D_OFFSET",
112
116
  ):
113
117
  """Add a stroke geometry modifier to the line style associated with the active lineset
114
118
 
115
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
116
- :type execution_context: typing.Optional[typing.Union[int, str]]
117
- :type undo: typing.Optional[bool]
119
+ :type override_context: typing.Union[dict, bpy.types.Context]
120
+ :type execution_context: typing.Union[str, int]
121
+ :type undo: bool
118
122
  :param type: Type
119
- :type type: typing.Optional[typing.Any]
123
+ :type type: typing.Any
120
124
  """
121
125
 
122
126
  ...
123
127
 
124
- def freestyle_lineset_add(override_context=None, execution_context=None, undo=None):
128
+ def freestyle_lineset_add(
129
+ override_context: typing.Union[dict, bpy.types.Context] = None,
130
+ execution_context: typing.Union[str, int] = None,
131
+ undo: bool = None,
132
+ ):
125
133
  """Add a line set into the list of line sets
126
134
 
127
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
128
- :type execution_context: typing.Optional[typing.Union[int, str]]
129
- :type undo: typing.Optional[bool]
135
+ :type override_context: typing.Union[dict, bpy.types.Context]
136
+ :type execution_context: typing.Union[str, int]
137
+ :type undo: bool
130
138
  """
131
139
 
132
140
  ...
133
141
 
134
- def freestyle_lineset_copy(override_context=None, execution_context=None, undo=None):
142
+ def freestyle_lineset_copy(
143
+ override_context: typing.Union[dict, bpy.types.Context] = None,
144
+ execution_context: typing.Union[str, int] = None,
145
+ undo: bool = None,
146
+ ):
135
147
  """Copy the active line set to the internal clipboard
136
148
 
137
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
138
- :type execution_context: typing.Optional[typing.Union[int, str]]
139
- :type undo: typing.Optional[bool]
149
+ :type override_context: typing.Union[dict, bpy.types.Context]
150
+ :type execution_context: typing.Union[str, int]
151
+ :type undo: bool
140
152
  """
141
153
 
142
154
  ...
143
155
 
144
156
  def freestyle_lineset_move(
145
- override_context=None,
146
- execution_context=None,
147
- undo=None,
148
- *,
149
- direction: typing.Optional[typing.Any] = "UP",
157
+ override_context: typing.Union[dict, bpy.types.Context] = None,
158
+ execution_context: typing.Union[str, int] = None,
159
+ undo: bool = None,
160
+ direction: typing.Any = "UP",
150
161
  ):
151
162
  """Change the position of the active line set within the list of line sets
152
163
 
153
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
154
- :type execution_context: typing.Optional[typing.Union[int, str]]
155
- :type undo: typing.Optional[bool]
164
+ :type override_context: typing.Union[dict, bpy.types.Context]
165
+ :type execution_context: typing.Union[str, int]
166
+ :type undo: bool
156
167
  :param direction: Direction, Direction to move the active line set towards
157
- :type direction: typing.Optional[typing.Any]
168
+ :type direction: typing.Any
158
169
  """
159
170
 
160
171
  ...
161
172
 
162
- def freestyle_lineset_paste(override_context=None, execution_context=None, undo=None):
173
+ def freestyle_lineset_paste(
174
+ override_context: typing.Union[dict, bpy.types.Context] = None,
175
+ execution_context: typing.Union[str, int] = None,
176
+ undo: bool = None,
177
+ ):
163
178
  """Paste the internal clipboard content to the active line set
164
179
 
165
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
166
- :type execution_context: typing.Optional[typing.Union[int, str]]
167
- :type undo: typing.Optional[bool]
180
+ :type override_context: typing.Union[dict, bpy.types.Context]
181
+ :type execution_context: typing.Union[str, int]
182
+ :type undo: bool
168
183
  """
169
184
 
170
185
  ...
171
186
 
172
- def freestyle_lineset_remove(override_context=None, execution_context=None, undo=None):
187
+ def freestyle_lineset_remove(
188
+ override_context: typing.Union[dict, bpy.types.Context] = None,
189
+ execution_context: typing.Union[str, int] = None,
190
+ undo: bool = None,
191
+ ):
173
192
  """Remove the active line set from the list of line sets
174
193
 
175
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
176
- :type execution_context: typing.Optional[typing.Union[int, str]]
177
- :type undo: typing.Optional[bool]
194
+ :type override_context: typing.Union[dict, bpy.types.Context]
195
+ :type execution_context: typing.Union[str, int]
196
+ :type undo: bool
178
197
  """
179
198
 
180
199
  ...
181
200
 
182
- def freestyle_linestyle_new(override_context=None, execution_context=None, undo=None):
201
+ def freestyle_linestyle_new(
202
+ override_context: typing.Union[dict, bpy.types.Context] = None,
203
+ execution_context: typing.Union[str, int] = None,
204
+ undo: bool = None,
205
+ ):
183
206
  """Create a new line style, reusable by multiple line sets
184
207
 
185
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
186
- :type execution_context: typing.Optional[typing.Union[int, str]]
187
- :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
188
211
  """
189
212
 
190
213
  ...
191
214
 
192
- def freestyle_modifier_copy(override_context=None, execution_context=None, undo=None):
215
+ def freestyle_modifier_copy(
216
+ override_context: typing.Union[dict, bpy.types.Context] = None,
217
+ execution_context: typing.Union[str, int] = None,
218
+ undo: bool = None,
219
+ ):
193
220
  """Duplicate the modifier within the list of modifiers
194
221
 
195
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
196
- :type execution_context: typing.Optional[typing.Union[int, str]]
197
- :type undo: typing.Optional[bool]
222
+ :type override_context: typing.Union[dict, bpy.types.Context]
223
+ :type execution_context: typing.Union[str, int]
224
+ :type undo: bool
198
225
  """
199
226
 
200
227
  ...
201
228
 
202
229
  def freestyle_modifier_move(
203
- override_context=None,
204
- execution_context=None,
205
- undo=None,
206
- *,
207
- direction: typing.Optional[typing.Any] = "UP",
230
+ override_context: typing.Union[dict, bpy.types.Context] = None,
231
+ execution_context: typing.Union[str, int] = None,
232
+ undo: bool = None,
233
+ direction: typing.Any = "UP",
208
234
  ):
209
235
  """Move the modifier within the list of modifiers
210
236
 
211
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
212
- :type execution_context: typing.Optional[typing.Union[int, str]]
213
- :type undo: typing.Optional[bool]
237
+ :type override_context: typing.Union[dict, bpy.types.Context]
238
+ :type execution_context: typing.Union[str, int]
239
+ :type undo: bool
214
240
  :param direction: Direction, Direction to move the chosen modifier towards
215
- :type direction: typing.Optional[typing.Any]
241
+ :type direction: typing.Any
216
242
  """
217
243
 
218
244
  ...
219
245
 
220
- def freestyle_modifier_remove(override_context=None, execution_context=None, undo=None):
246
+ def freestyle_modifier_remove(
247
+ override_context: typing.Union[dict, bpy.types.Context] = None,
248
+ execution_context: typing.Union[str, int] = None,
249
+ undo: bool = None,
250
+ ):
221
251
  """Remove the modifier from the list of modifiers
222
252
 
223
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
224
- :type execution_context: typing.Optional[typing.Union[int, str]]
225
- :type undo: typing.Optional[bool]
253
+ :type override_context: typing.Union[dict, bpy.types.Context]
254
+ :type execution_context: typing.Union[str, int]
255
+ :type undo: bool
226
256
  """
227
257
 
228
258
  ...
229
259
 
230
- def freestyle_module_add(override_context=None, execution_context=None, undo=None):
260
+ def freestyle_module_add(
261
+ override_context: typing.Union[dict, bpy.types.Context] = None,
262
+ execution_context: typing.Union[str, int] = None,
263
+ undo: bool = None,
264
+ ):
231
265
  """Add a style module into the list of modules
232
266
 
233
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
234
- :type execution_context: typing.Optional[typing.Union[int, str]]
235
- :type undo: typing.Optional[bool]
267
+ :type override_context: typing.Union[dict, bpy.types.Context]
268
+ :type execution_context: typing.Union[str, int]
269
+ :type undo: bool
236
270
  """
237
271
 
238
272
  ...
239
273
 
240
274
  def freestyle_module_move(
241
- override_context=None,
242
- execution_context=None,
243
- undo=None,
244
- *,
245
- direction: typing.Optional[typing.Any] = "UP",
275
+ override_context: typing.Union[dict, bpy.types.Context] = None,
276
+ execution_context: typing.Union[str, int] = None,
277
+ undo: bool = None,
278
+ direction: typing.Any = "UP",
246
279
  ):
247
280
  """Change the position of the style module within in the list of style modules
248
281
 
249
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
250
- :type execution_context: typing.Optional[typing.Union[int, str]]
251
- :type undo: typing.Optional[bool]
282
+ :type override_context: typing.Union[dict, bpy.types.Context]
283
+ :type execution_context: typing.Union[str, int]
284
+ :type undo: bool
252
285
  :param direction: Direction, Direction to move the chosen style module towards
253
- :type direction: typing.Optional[typing.Any]
286
+ :type direction: typing.Any
254
287
  """
255
288
 
256
289
  ...
257
290
 
258
291
  def freestyle_module_open(
259
- override_context=None,
260
- execution_context=None,
261
- undo=None,
262
- *,
292
+ override_context: typing.Union[dict, bpy.types.Context] = None,
293
+ execution_context: typing.Union[str, int] = None,
294
+ undo: bool = None,
263
295
  filepath: typing.Union[str, typing.Any] = "",
264
- make_internal: typing.Optional[typing.Union[bool, typing.Any]] = True,
296
+ make_internal: typing.Union[bool, typing.Any] = True,
265
297
  ):
266
298
  """Open a style module file
267
299
 
268
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
269
- :type execution_context: typing.Optional[typing.Union[int, str]]
270
- :type undo: typing.Optional[bool]
300
+ :type override_context: typing.Union[dict, bpy.types.Context]
301
+ :type execution_context: typing.Union[str, int]
302
+ :type undo: bool
271
303
  :param filepath: filepath
272
304
  :type filepath: typing.Union[str, typing.Any]
273
305
  :param make_internal: Make internal, Make module file internal after loading
274
- :type make_internal: typing.Optional[typing.Union[bool, typing.Any]]
306
+ :type make_internal: typing.Union[bool, typing.Any]
275
307
  """
276
308
 
277
309
  ...
278
310
 
279
- def freestyle_module_remove(override_context=None, execution_context=None, undo=None):
311
+ def freestyle_module_remove(
312
+ override_context: typing.Union[dict, bpy.types.Context] = None,
313
+ execution_context: typing.Union[str, int] = None,
314
+ undo: bool = None,
315
+ ):
280
316
  """Remove the style module from the stack
281
317
 
282
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
283
- :type execution_context: typing.Optional[typing.Union[int, str]]
284
- :type undo: typing.Optional[bool]
318
+ :type override_context: typing.Union[dict, bpy.types.Context]
319
+ :type execution_context: typing.Union[str, int]
320
+ :type undo: bool
285
321
  """
286
322
 
287
323
  ...
288
324
 
289
325
  def freestyle_stroke_material_create(
290
- override_context=None, execution_context=None, undo=None
326
+ override_context: typing.Union[dict, bpy.types.Context] = None,
327
+ execution_context: typing.Union[str, int] = None,
328
+ undo: bool = None,
291
329
  ):
292
330
  """Create Freestyle stroke material for testing
293
331
 
294
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
295
- :type execution_context: typing.Optional[typing.Union[int, str]]
296
- :type undo: typing.Optional[bool]
332
+ :type override_context: typing.Union[dict, bpy.types.Context]
333
+ :type execution_context: typing.Union[str, int]
334
+ :type undo: bool
297
335
  """
298
336
 
299
337
  ...
300
338
 
301
339
  def freestyle_thickness_modifier_add(
302
- override_context=None,
303
- execution_context=None,
304
- undo=None,
305
- *,
306
- type: typing.Optional[typing.Any] = "ALONG_STROKE",
340
+ override_context: typing.Union[dict, bpy.types.Context] = None,
341
+ execution_context: typing.Union[str, int] = None,
342
+ undo: bool = None,
343
+ type: typing.Any = "ALONG_STROKE",
307
344
  ):
308
345
  """Add a line thickness modifier to the line style associated with the active lineset
309
346
 
310
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
311
- :type execution_context: typing.Optional[typing.Union[int, str]]
312
- :type undo: typing.Optional[bool]
347
+ :type override_context: typing.Union[dict, bpy.types.Context]
348
+ :type execution_context: typing.Union[str, int]
349
+ :type undo: bool
313
350
  :param type: Type
314
- :type type: typing.Optional[typing.Any]
351
+ :type type: typing.Any
315
352
  """
316
353
 
317
354
  ...
318
355
 
319
356
  def gltf2_action_filter_refresh(
320
- override_context=None, execution_context=None, undo=None
357
+ override_context: typing.Union[dict, bpy.types.Context] = None,
358
+ execution_context: typing.Union[str, int] = None,
359
+ undo: bool = None,
321
360
  ):
322
361
  """Refresh list of actions
323
362
 
324
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
325
- :type execution_context: typing.Optional[typing.Union[int, str]]
326
- :type undo: typing.Optional[bool]
363
+ :type override_context: typing.Union[dict, bpy.types.Context]
364
+ :type execution_context: typing.Union[str, int]
365
+ :type undo: bool
327
366
  """
328
367
 
329
368
  ...
330
369
 
331
370
  def gpencil_brush_preset_add(
332
- override_context=None,
333
- execution_context=None,
334
- undo=None,
335
- *,
371
+ override_context: typing.Union[dict, bpy.types.Context] = None,
372
+ execution_context: typing.Union[str, int] = None,
373
+ undo: bool = None,
336
374
  name: typing.Union[str, typing.Any] = "",
337
- remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
338
- remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
375
+ remove_name: typing.Union[bool, typing.Any] = False,
376
+ remove_active: typing.Union[bool, typing.Any] = False,
339
377
  ):
340
378
  """Add or remove grease pencil brush preset
341
379
 
342
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
343
- :type execution_context: typing.Optional[typing.Union[int, str]]
344
- :type undo: typing.Optional[bool]
380
+ :type override_context: typing.Union[dict, bpy.types.Context]
381
+ :type execution_context: typing.Union[str, int]
382
+ :type undo: bool
345
383
  :param name: Name, Name of the preset, used to make the path name
346
384
  :type name: typing.Union[str, typing.Any]
347
385
  :param remove_name: remove_name
348
- :type remove_name: typing.Optional[typing.Union[bool, typing.Any]]
386
+ :type remove_name: typing.Union[bool, typing.Any]
349
387
  :param remove_active: remove_active
350
- :type remove_active: typing.Optional[typing.Union[bool, typing.Any]]
388
+ :type remove_active: typing.Union[bool, typing.Any]
351
389
  """
352
390
 
353
391
  ...
354
392
 
355
393
  def gpencil_material_preset_add(
356
- override_context=None,
357
- execution_context=None,
358
- undo=None,
359
- *,
394
+ override_context: typing.Union[dict, bpy.types.Context] = None,
395
+ execution_context: typing.Union[str, int] = None,
396
+ undo: bool = None,
360
397
  name: typing.Union[str, typing.Any] = "",
361
- remove_name: typing.Optional[typing.Union[bool, typing.Any]] = False,
362
- remove_active: typing.Optional[typing.Union[bool, typing.Any]] = False,
398
+ remove_name: typing.Union[bool, typing.Any] = False,
399
+ remove_active: typing.Union[bool, typing.Any] = False,
363
400
  ):
364
401
  """Add or remove grease pencil material preset
365
402
 
366
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
367
- :type execution_context: typing.Optional[typing.Union[int, str]]
368
- :type undo: typing.Optional[bool]
403
+ :type override_context: typing.Union[dict, bpy.types.Context]
404
+ :type execution_context: typing.Union[str, int]
405
+ :type undo: bool
369
406
  :param name: Name, Name of the preset, used to make the path name
370
407
  :type name: typing.Union[str, typing.Any]
371
408
  :param remove_name: remove_name
372
- :type remove_name: typing.Optional[typing.Union[bool, typing.Any]]
409
+ :type remove_name: typing.Union[bool, typing.Any]
373
410
  :param remove_active: remove_active
374
- :type remove_active: typing.Optional[typing.Union[bool, typing.Any]]
411
+ :type remove_active: typing.Union[bool, typing.Any]
375
412
  """
376
413
 
377
414
  ...
378
415
 
379
416
  def light_cache_bake(
380
- override_context=None,
381
- execution_context=None,
382
- undo=None,
383
- *,
384
- delay: typing.Optional[typing.Any] = 0,
385
- subset: typing.Optional[typing.Any] = "ALL",
417
+ override_context: typing.Union[dict, bpy.types.Context] = None,
418
+ execution_context: typing.Union[str, int] = None,
419
+ undo: bool = None,
420
+ delay: typing.Any = 0,
421
+ subset: typing.Any = "ALL",
386
422
  ):
387
423
  """Bake the active view layer lighting
388
424
 
389
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
390
- :type execution_context: typing.Optional[typing.Union[int, str]]
391
- :type undo: typing.Optional[bool]
425
+ :type override_context: typing.Union[dict, bpy.types.Context]
426
+ :type execution_context: typing.Union[str, int]
427
+ :type undo: bool
392
428
  :param delay: Delay, Delay in millisecond before baking starts
393
- :type delay: typing.Optional[typing.Any]
429
+ :type delay: typing.Any
394
430
  :param subset: Subset, Subset of probes to update
395
431
 
396
432
  ALL
@@ -401,33 +437,36 @@ def light_cache_bake(
401
437
 
402
438
  CUBEMAPS
403
439
  Cubemaps Only -- Try to only bake reflection cubemaps if irradiance grids are up to date.
404
- :type subset: typing.Optional[typing.Any]
440
+ :type subset: typing.Any
405
441
  """
406
442
 
407
443
  ...
408
444
 
409
- def light_cache_free(override_context=None, execution_context=None, undo=None):
445
+ def light_cache_free(
446
+ override_context: typing.Union[dict, bpy.types.Context] = None,
447
+ execution_context: typing.Union[str, int] = None,
448
+ undo: bool = None,
449
+ ):
410
450
  """Delete cached indirect lighting
411
451
 
412
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
413
- :type execution_context: typing.Optional[typing.Union[int, str]]
414
- :type undo: typing.Optional[bool]
452
+ :type override_context: typing.Union[dict, bpy.types.Context]
453
+ :type execution_context: typing.Union[str, int]
454
+ :type undo: bool
415
455
  """
416
456
 
417
457
  ...
418
458
 
419
459
  def new(
420
- override_context=None,
421
- execution_context=None,
422
- undo=None,
423
- *,
424
- type: typing.Optional[typing.Any] = "NEW",
460
+ override_context: typing.Union[dict, bpy.types.Context] = None,
461
+ execution_context: typing.Union[str, int] = None,
462
+ undo: bool = None,
463
+ type: typing.Any = "NEW",
425
464
  ):
426
465
  """Add new scene by type
427
466
 
428
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
429
- :type execution_context: typing.Optional[typing.Union[int, str]]
430
- :type undo: typing.Optional[bool]
467
+ :type override_context: typing.Union[dict, bpy.types.Context]
468
+ :type execution_context: typing.Union[str, int]
469
+ :type undo: bool
431
470
  :param type: Type
432
471
 
433
472
  NEW
@@ -441,23 +480,22 @@ def new(
441
480
 
442
481
  FULL_COPY
443
482
  Full Copy -- Make a full copy of the current scene.
444
- :type type: typing.Optional[typing.Any]
483
+ :type type: typing.Any
445
484
  """
446
485
 
447
486
  ...
448
487
 
449
488
  def new_sequencer(
450
- override_context=None,
451
- execution_context=None,
452
- undo=None,
453
- *,
454
- type: typing.Optional[typing.Any] = "NEW",
489
+ override_context: typing.Union[dict, bpy.types.Context] = None,
490
+ execution_context: typing.Union[str, int] = None,
491
+ undo: bool = None,
492
+ type: typing.Any = "NEW",
455
493
  ):
456
494
  """Add new scene by type in the sequence editor and assign to active strip
457
495
 
458
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
459
- :type execution_context: typing.Optional[typing.Union[int, str]]
460
- :type undo: typing.Optional[bool]
496
+ :type override_context: typing.Union[dict, bpy.types.Context]
497
+ :type execution_context: typing.Union[str, int]
498
+ :type undo: bool
461
499
  :param type: Type
462
500
 
463
501
  NEW
@@ -471,43 +509,50 @@ def new_sequencer(
471
509
 
472
510
  FULL_COPY
473
511
  Full Copy -- Make a full copy of the current scene.
474
- :type type: typing.Optional[typing.Any]
512
+ :type type: typing.Any
475
513
  """
476
514
 
477
515
  ...
478
516
 
479
- def render_view_add(override_context=None, execution_context=None, undo=None):
517
+ def render_view_add(
518
+ override_context: typing.Union[dict, bpy.types.Context] = None,
519
+ execution_context: typing.Union[str, int] = None,
520
+ undo: bool = None,
521
+ ):
480
522
  """Add a render view
481
523
 
482
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
483
- :type execution_context: typing.Optional[typing.Union[int, str]]
484
- :type undo: typing.Optional[bool]
524
+ :type override_context: typing.Union[dict, bpy.types.Context]
525
+ :type execution_context: typing.Union[str, int]
526
+ :type undo: bool
485
527
  """
486
528
 
487
529
  ...
488
530
 
489
- def render_view_remove(override_context=None, execution_context=None, undo=None):
531
+ def render_view_remove(
532
+ override_context: typing.Union[dict, bpy.types.Context] = None,
533
+ execution_context: typing.Union[str, int] = None,
534
+ undo: bool = None,
535
+ ):
490
536
  """Remove the selected render view
491
537
 
492
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
493
- :type execution_context: typing.Optional[typing.Union[int, str]]
494
- :type undo: typing.Optional[bool]
538
+ :type override_context: typing.Union[dict, bpy.types.Context]
539
+ :type execution_context: typing.Union[str, int]
540
+ :type undo: bool
495
541
  """
496
542
 
497
543
  ...
498
544
 
499
545
  def view_layer_add(
500
- override_context=None,
501
- execution_context=None,
502
- undo=None,
503
- *,
504
- type: typing.Optional[typing.Any] = "NEW",
546
+ override_context: typing.Union[dict, bpy.types.Context] = None,
547
+ execution_context: typing.Union[str, int] = None,
548
+ undo: bool = None,
549
+ type: typing.Any = "NEW",
505
550
  ):
506
551
  """Add a view layer
507
552
 
508
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
509
- :type execution_context: typing.Optional[typing.Union[int, str]]
510
- :type undo: typing.Optional[bool]
553
+ :type override_context: typing.Union[dict, bpy.types.Context]
554
+ :type execution_context: typing.Union[str, int]
555
+ :type undo: bool
511
556
  :param type: Type
512
557
 
513
558
  NEW
@@ -518,33 +563,36 @@ def view_layer_add(
518
563
 
519
564
  EMPTY
520
565
  Blank -- Add a new view layer with all collections disabled.
521
- :type type: typing.Optional[typing.Any]
566
+ :type type: typing.Any
522
567
  """
523
568
 
524
569
  ...
525
570
 
526
- def view_layer_add_aov(override_context=None, execution_context=None, undo=None):
571
+ def view_layer_add_aov(
572
+ override_context: typing.Union[dict, bpy.types.Context] = None,
573
+ execution_context: typing.Union[str, int] = None,
574
+ undo: bool = None,
575
+ ):
527
576
  """Add a Shader AOV
528
577
 
529
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
530
- :type execution_context: typing.Optional[typing.Union[int, str]]
531
- :type undo: typing.Optional[bool]
578
+ :type override_context: typing.Union[dict, bpy.types.Context]
579
+ :type execution_context: typing.Union[str, int]
580
+ :type undo: bool
532
581
  """
533
582
 
534
583
  ...
535
584
 
536
585
  def view_layer_add_lightgroup(
537
- override_context=None,
538
- execution_context=None,
539
- undo=None,
540
- *,
586
+ override_context: typing.Union[dict, bpy.types.Context] = None,
587
+ execution_context: typing.Union[str, int] = None,
588
+ undo: bool = None,
541
589
  name: typing.Union[str, typing.Any] = "",
542
590
  ):
543
591
  """Add a Light Group
544
592
 
545
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
546
- :type execution_context: typing.Optional[typing.Union[int, str]]
547
- :type undo: typing.Optional[bool]
593
+ :type override_context: typing.Union[dict, bpy.types.Context]
594
+ :type execution_context: typing.Union[str, int]
595
+ :type undo: bool
548
596
  :param name: Name, Name of newly created lightgroup
549
597
  :type name: typing.Union[str, typing.Any]
550
598
  """
@@ -552,57 +600,71 @@ def view_layer_add_lightgroup(
552
600
  ...
553
601
 
554
602
  def view_layer_add_used_lightgroups(
555
- override_context=None, execution_context=None, undo=None
603
+ override_context: typing.Union[dict, bpy.types.Context] = None,
604
+ execution_context: typing.Union[str, int] = None,
605
+ undo: bool = None,
556
606
  ):
557
607
  """Add all used Light Groups
558
608
 
559
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
560
- :type execution_context: typing.Optional[typing.Union[int, str]]
561
- :type undo: typing.Optional[bool]
609
+ :type override_context: typing.Union[dict, bpy.types.Context]
610
+ :type execution_context: typing.Union[str, int]
611
+ :type undo: bool
562
612
  """
563
613
 
564
614
  ...
565
615
 
566
- def view_layer_remove(override_context=None, execution_context=None, undo=None):
616
+ def view_layer_remove(
617
+ override_context: typing.Union[dict, bpy.types.Context] = None,
618
+ execution_context: typing.Union[str, int] = None,
619
+ undo: bool = None,
620
+ ):
567
621
  """Remove the selected view layer
568
622
 
569
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
570
- :type execution_context: typing.Optional[typing.Union[int, str]]
571
- :type undo: typing.Optional[bool]
623
+ :type override_context: typing.Union[dict, bpy.types.Context]
624
+ :type execution_context: typing.Union[str, int]
625
+ :type undo: bool
572
626
  """
573
627
 
574
628
  ...
575
629
 
576
- def view_layer_remove_aov(override_context=None, execution_context=None, undo=None):
630
+ def view_layer_remove_aov(
631
+ override_context: typing.Union[dict, bpy.types.Context] = None,
632
+ execution_context: typing.Union[str, int] = None,
633
+ undo: bool = None,
634
+ ):
577
635
  """Remove Active AOV
578
636
 
579
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
580
- :type execution_context: typing.Optional[typing.Union[int, str]]
581
- :type undo: typing.Optional[bool]
637
+ :type override_context: typing.Union[dict, bpy.types.Context]
638
+ :type execution_context: typing.Union[str, int]
639
+ :type undo: bool
582
640
  """
583
641
 
584
642
  ...
585
643
 
586
644
  def view_layer_remove_lightgroup(
587
- override_context=None, execution_context=None, undo=None
645
+ override_context: typing.Union[dict, bpy.types.Context] = None,
646
+ execution_context: typing.Union[str, int] = None,
647
+ undo: bool = None,
588
648
  ):
589
649
  """Remove Active Lightgroup
590
650
 
591
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
592
- :type execution_context: typing.Optional[typing.Union[int, str]]
593
- :type undo: typing.Optional[bool]
651
+ :type override_context: typing.Union[dict, bpy.types.Context]
652
+ :type execution_context: typing.Union[str, int]
653
+ :type undo: bool
594
654
  """
595
655
 
596
656
  ...
597
657
 
598
658
  def view_layer_remove_unused_lightgroups(
599
- override_context=None, execution_context=None, undo=None
659
+ override_context: typing.Union[dict, bpy.types.Context] = None,
660
+ execution_context: typing.Union[str, int] = None,
661
+ undo: bool = None,
600
662
  ):
601
663
  """Remove all unused Light Groups
602
664
 
603
- :type override_context: typing.Optional[typing.Union['bpy.types.Context', typing.Dict]]
604
- :type execution_context: typing.Optional[typing.Union[int, str]]
605
- :type undo: typing.Optional[bool]
665
+ :type override_context: typing.Union[dict, bpy.types.Context]
666
+ :type execution_context: typing.Union[str, int]
667
+ :type undo: bool
606
668
  """
607
669
 
608
670
  ...