fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 (80) hide show
  1. bpy/ops/action/__init__.pyi +38 -138
  2. bpy/ops/anim/__init__.pyi +61 -179
  3. bpy/ops/armature/__init__.pyi +48 -147
  4. bpy/ops/asset/__init__.pyi +16 -71
  5. bpy/ops/boid/__init__.pyi +8 -41
  6. bpy/ops/brush/__init__.pyi +13 -39
  7. bpy/ops/buttons/__init__.pyi +6 -29
  8. bpy/ops/cachefile/__init__.pyi +5 -19
  9. bpy/ops/camera/__init__.pyi +2 -5
  10. bpy/ops/clip/__init__.pyi +92 -290
  11. bpy/ops/cloth/__init__.pyi +1 -3
  12. bpy/ops/collection/__init__.pyi +9 -25
  13. bpy/ops/console/__init__.pyi +21 -79
  14. bpy/ops/constraint/__init__.pyi +18 -45
  15. bpy/ops/curve/__init__.pyi +51 -180
  16. bpy/ops/curves/__init__.pyi +28 -100
  17. bpy/ops/cycles/__init__.pyi +3 -9
  18. bpy/ops/dpaint/__init__.pyi +5 -19
  19. bpy/ops/ed/__init__.pyi +12 -53
  20. bpy/ops/export_anim/__init__.pyi +1 -3
  21. bpy/ops/export_scene/__init__.pyi +2 -5
  22. bpy/ops/extensions/__init__.pyi +34 -110
  23. bpy/ops/file/__init__.pyi +40 -167
  24. bpy/ops/fluid/__init__.pyi +14 -77
  25. bpy/ops/font/__init__.pyi +23 -85
  26. bpy/ops/geometry/__init__.pyi +10 -27
  27. bpy/ops/gizmogroup/__init__.pyi +2 -9
  28. bpy/ops/gpencil/__init__.pyi +8 -32
  29. bpy/ops/graph/__init__.pyi +65 -184
  30. bpy/ops/grease_pencil/__init__.pyi +108 -290
  31. bpy/ops/image/__init__.pyi +49 -154
  32. bpy/ops/import_anim/__init__.pyi +1 -3
  33. bpy/ops/import_curve/__init__.pyi +1 -3
  34. bpy/ops/import_scene/__init__.pyi +2 -4
  35. bpy/ops/info/__init__.pyi +7 -29
  36. bpy/ops/lattice/__init__.pyi +8 -29
  37. bpy/ops/marker/__init__.pyi +11 -31
  38. bpy/ops/mask/__init__.pyi +39 -132
  39. bpy/ops/material/__init__.pyi +3 -19
  40. bpy/ops/mball/__init__.pyi +8 -19
  41. bpy/ops/mesh/__init__.pyi +164 -401
  42. bpy/ops/nla/__init__.pyi +39 -147
  43. bpy/ops/node/__init__.pyi +115 -390
  44. bpy/ops/object/__init__.pyi +237 -630
  45. bpy/ops/outliner/__init__.pyi +71 -263
  46. bpy/ops/paint/__init__.pyi +54 -140
  47. bpy/ops/paintcurve/__init__.pyi +8 -33
  48. bpy/ops/palette/__init__.pyi +7 -27
  49. bpy/ops/particle/__init__.pyi +36 -134
  50. bpy/ops/pose/__init__.pyi +51 -169
  51. bpy/ops/poselib/__init__.pyi +9 -33
  52. bpy/ops/preferences/__init__.pyi +35 -94
  53. bpy/ops/ptcache/__init__.pyi +7 -33
  54. bpy/ops/render/__init__.pyi +13 -37
  55. bpy/ops/rigidbody/__init__.pyi +13 -45
  56. bpy/ops/scene/__init__.pyi +37 -121
  57. bpy/ops/screen/__init__.pyi +39 -137
  58. bpy/ops/script/__init__.pyi +3 -11
  59. bpy/ops/sculpt/__init__.pyi +37 -94
  60. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  61. bpy/ops/sequencer/__init__.pyi +89 -284
  62. bpy/ops/sound/__init__.pyi +7 -23
  63. bpy/ops/spreadsheet/__init__.pyi +4 -15
  64. bpy/ops/surface/__init__.pyi +6 -13
  65. bpy/ops/text/__init__.pyi +43 -175
  66. bpy/ops/text_editor/__init__.pyi +1 -3
  67. bpy/ops/texture/__init__.pyi +4 -21
  68. bpy/ops/transform/__init__.pyi +27 -61
  69. bpy/ops/ui/__init__.pyi +34 -117
  70. bpy/ops/uilist/__init__.pyi +3 -7
  71. bpy/ops/uv/__init__.pyi +49 -134
  72. bpy/ops/view2d/__init__.pyi +14 -39
  73. bpy/ops/view3d/__init__.pyi +67 -232
  74. bpy/ops/wm/__init__.pyi +114 -298
  75. bpy/ops/workspace/__init__.pyi +7 -33
  76. bpy/ops/world/__init__.pyi +2 -11
  77. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  78. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
  79. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  80. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -1,55 +1,42 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
  import bpy.typing
6
5
 
7
- def delete(
8
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
9
- execution_context: int | str | None = None,
10
- undo: bool | None = None,
11
- ):
6
+ def delete(execution_context: int | str | None = None, undo: bool | None = None):
12
7
  """Delete active scene
13
8
 
14
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
15
9
  :type execution_context: int | str | None
16
10
  :type undo: bool | None
17
11
  """
18
12
 
19
13
  def freestyle_add_edge_marks_to_keying_set(
20
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
21
- execution_context: int | str | None = None,
22
- undo: bool | None = None,
14
+ execution_context: int | str | None = None, undo: bool | None = None
23
15
  ):
24
16
  """Add the data paths to the Freestyle Edge Mark property of selected edges to the active keying set
25
17
 
26
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
27
18
  :type execution_context: int | str | None
28
19
  :type undo: bool | None
29
20
  """
30
21
 
31
22
  def freestyle_add_face_marks_to_keying_set(
32
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
33
- execution_context: int | str | None = None,
34
- undo: bool | None = None,
23
+ execution_context: int | str | None = None, undo: bool | None = None
35
24
  ):
36
25
  """Add the data paths to the Freestyle Face Mark property of selected polygons to the active keying set
37
26
 
38
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
39
27
  :type execution_context: int | str | None
40
28
  :type undo: bool | None
41
29
  """
42
30
 
43
31
  def freestyle_alpha_modifier_add(
44
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
45
32
  execution_context: int | str | None = None,
46
33
  undo: bool | None = None,
34
+ /,
47
35
  *,
48
36
  type: bpy.typing.LinestyleAlphaModifierTypeItems | None = "ALONG_STROKE",
49
37
  ):
50
38
  """Add an alpha transparency modifier to the line style associated with the active lineset
51
39
 
52
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
53
40
  :type execution_context: int | str | None
54
41
  :type undo: bool | None
55
42
  :param type: Type
@@ -57,15 +44,14 @@ def freestyle_alpha_modifier_add(
57
44
  """
58
45
 
59
46
  def freestyle_color_modifier_add(
60
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
61
47
  execution_context: int | str | None = None,
62
48
  undo: bool | None = None,
49
+ /,
63
50
  *,
64
51
  type: bpy.typing.LinestyleColorModifierTypeItems | None = "ALONG_STROKE",
65
52
  ):
66
53
  """Add a line color modifier to the line style associated with the active lineset
67
54
 
68
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
69
55
  :type execution_context: int | str | None
70
56
  :type undo: bool | None
71
57
  :param type: Type
@@ -73,16 +59,15 @@ def freestyle_color_modifier_add(
73
59
  """
74
60
 
75
61
  def freestyle_fill_range_by_selection(
76
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
77
62
  execution_context: int | str | None = None,
78
63
  undo: bool | None = None,
64
+ /,
79
65
  *,
80
66
  type: typing.Literal["COLOR", "ALPHA", "THICKNESS"] | None = "COLOR",
81
67
  name: str = "",
82
68
  ):
83
69
  """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)
84
70
 
85
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
86
71
  :type execution_context: int | str | None
87
72
  :type undo: bool | None
88
73
  :param type: Type, Type of the modifier to work on
@@ -101,15 +86,14 @@ def freestyle_fill_range_by_selection(
101
86
  """
102
87
 
103
88
  def freestyle_geometry_modifier_add(
104
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
105
89
  execution_context: int | str | None = None,
106
90
  undo: bool | None = None,
91
+ /,
107
92
  *,
108
93
  type: bpy.typing.LinestyleGeometryModifierTypeItems | None = "2D_OFFSET",
109
94
  ):
110
95
  """Add a stroke geometry modifier to the line style associated with the active lineset
111
96
 
112
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
113
97
  :type execution_context: int | str | None
114
98
  :type undo: bool | None
115
99
  :param type: Type
@@ -117,39 +101,32 @@ def freestyle_geometry_modifier_add(
117
101
  """
118
102
 
119
103
  def freestyle_lineset_add(
120
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
121
- execution_context: int | str | None = None,
122
- undo: bool | None = None,
104
+ execution_context: int | str | None = None, undo: bool | None = None
123
105
  ):
124
106
  """Add a line set into the list of line sets
125
107
 
126
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
127
108
  :type execution_context: int | str | None
128
109
  :type undo: bool | None
129
110
  """
130
111
 
131
112
  def freestyle_lineset_copy(
132
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
133
- execution_context: int | str | None = None,
134
- undo: bool | None = None,
113
+ execution_context: int | str | None = None, undo: bool | None = None
135
114
  ):
136
115
  """Copy the active line set to the internal clipboard
137
116
 
138
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
139
117
  :type execution_context: int | str | None
140
118
  :type undo: bool | None
141
119
  """
142
120
 
143
121
  def freestyle_lineset_move(
144
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
145
122
  execution_context: int | str | None = None,
146
123
  undo: bool | None = None,
124
+ /,
147
125
  *,
148
126
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
149
127
  ):
150
128
  """Change the position of the active line set within the list of line sets
151
129
 
152
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
153
130
  :type execution_context: int | str | None
154
131
  :type undo: bool | None
155
132
  :param direction: Direction, Direction to move the active line set towards
@@ -157,63 +134,50 @@ def freestyle_lineset_move(
157
134
  """
158
135
 
159
136
  def freestyle_lineset_paste(
160
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
161
- execution_context: int | str | None = None,
162
- undo: bool | None = None,
137
+ execution_context: int | str | None = None, undo: bool | None = None
163
138
  ):
164
139
  """Paste the internal clipboard content to the active line set
165
140
 
166
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
167
141
  :type execution_context: int | str | None
168
142
  :type undo: bool | None
169
143
  """
170
144
 
171
145
  def freestyle_lineset_remove(
172
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
173
- execution_context: int | str | None = None,
174
- undo: bool | None = None,
146
+ execution_context: int | str | None = None, undo: bool | None = None
175
147
  ):
176
148
  """Remove the active line set from the list of line sets
177
149
 
178
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
179
150
  :type execution_context: int | str | None
180
151
  :type undo: bool | None
181
152
  """
182
153
 
183
154
  def freestyle_linestyle_new(
184
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
185
- execution_context: int | str | None = None,
186
- undo: bool | None = None,
155
+ execution_context: int | str | None = None, undo: bool | None = None
187
156
  ):
188
157
  """Create a new line style, reusable by multiple line sets
189
158
 
190
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
191
159
  :type execution_context: int | str | None
192
160
  :type undo: bool | None
193
161
  """
194
162
 
195
163
  def freestyle_modifier_copy(
196
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
197
- execution_context: int | str | None = None,
198
- undo: bool | None = None,
164
+ execution_context: int | str | None = None, undo: bool | None = None
199
165
  ):
200
166
  """Duplicate the modifier within the list of modifiers
201
167
 
202
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
203
168
  :type execution_context: int | str | None
204
169
  :type undo: bool | None
205
170
  """
206
171
 
207
172
  def freestyle_modifier_move(
208
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
209
173
  execution_context: int | str | None = None,
210
174
  undo: bool | None = None,
175
+ /,
211
176
  *,
212
177
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
213
178
  ):
214
179
  """Move the modifier within the list of modifiers
215
180
 
216
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
217
181
  :type execution_context: int | str | None
218
182
  :type undo: bool | None
219
183
  :param direction: Direction, Direction to move the chosen modifier towards
@@ -221,39 +185,32 @@ def freestyle_modifier_move(
221
185
  """
222
186
 
223
187
  def freestyle_modifier_remove(
224
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
225
- execution_context: int | str | None = None,
226
- undo: bool | None = None,
188
+ execution_context: int | str | None = None, undo: bool | None = None
227
189
  ):
228
190
  """Remove the modifier from the list of modifiers
229
191
 
230
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
231
192
  :type execution_context: int | str | None
232
193
  :type undo: bool | None
233
194
  """
234
195
 
235
196
  def freestyle_module_add(
236
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
237
- execution_context: int | str | None = None,
238
- undo: bool | None = None,
197
+ execution_context: int | str | None = None, undo: bool | None = None
239
198
  ):
240
199
  """Add a style module into the list of modules
241
200
 
242
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
243
201
  :type execution_context: int | str | None
244
202
  :type undo: bool | None
245
203
  """
246
204
 
247
205
  def freestyle_module_move(
248
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
249
206
  execution_context: int | str | None = None,
250
207
  undo: bool | None = None,
208
+ /,
251
209
  *,
252
210
  direction: typing.Literal["UP", "DOWN"] | None = "UP",
253
211
  ):
254
212
  """Change the position of the style module within in the list of style modules
255
213
 
256
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
257
214
  :type execution_context: int | str | None
258
215
  :type undo: bool | None
259
216
  :param direction: Direction, Direction to move the chosen style module towards
@@ -261,16 +218,15 @@ def freestyle_module_move(
261
218
  """
262
219
 
263
220
  def freestyle_module_open(
264
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
265
221
  execution_context: int | str | None = None,
266
222
  undo: bool | None = None,
223
+ /,
267
224
  *,
268
225
  filepath: str = "",
269
226
  make_internal: bool | None = True,
270
227
  ):
271
228
  """Open a style module file
272
229
 
273
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
274
230
  :type execution_context: int | str | None
275
231
  :type undo: bool | None
276
232
  :param filepath: filepath
@@ -280,39 +236,32 @@ def freestyle_module_open(
280
236
  """
281
237
 
282
238
  def freestyle_module_remove(
283
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
284
- execution_context: int | str | None = None,
285
- undo: bool | None = None,
239
+ execution_context: int | str | None = None, undo: bool | None = None
286
240
  ):
287
241
  """Remove the style module from the stack
288
242
 
289
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
290
243
  :type execution_context: int | str | None
291
244
  :type undo: bool | None
292
245
  """
293
246
 
294
247
  def freestyle_stroke_material_create(
295
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
296
- execution_context: int | str | None = None,
297
- undo: bool | None = None,
248
+ execution_context: int | str | None = None, undo: bool | None = None
298
249
  ):
299
250
  """Create Freestyle stroke material for testing
300
251
 
301
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
302
252
  :type execution_context: int | str | None
303
253
  :type undo: bool | None
304
254
  """
305
255
 
306
256
  def freestyle_thickness_modifier_add(
307
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
308
257
  execution_context: int | str | None = None,
309
258
  undo: bool | None = None,
259
+ /,
310
260
  *,
311
261
  type: bpy.typing.LinestyleThicknessModifierTypeItems | None = "ALONG_STROKE",
312
262
  ):
313
263
  """Add a line thickness modifier to the line style associated with the active lineset
314
264
 
315
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
316
265
  :type execution_context: int | str | None
317
266
  :type undo: bool | None
318
267
  :param type: Type
@@ -320,21 +269,18 @@ def freestyle_thickness_modifier_add(
320
269
  """
321
270
 
322
271
  def gltf2_action_filter_refresh(
323
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
324
- execution_context: int | str | None = None,
325
- undo: bool | None = None,
272
+ execution_context: int | str | None = None, undo: bool | None = None
326
273
  ):
327
274
  """Refresh list of actions
328
275
 
329
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
330
276
  :type execution_context: int | str | None
331
277
  :type undo: bool | None
332
278
  """
333
279
 
334
280
  def gpencil_brush_preset_add(
335
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
336
281
  execution_context: int | str | None = None,
337
282
  undo: bool | None = None,
283
+ /,
338
284
  *,
339
285
  name: str = "",
340
286
  remove_name: bool | None = False,
@@ -342,7 +288,6 @@ def gpencil_brush_preset_add(
342
288
  ):
343
289
  """Add or remove grease pencil brush preset
344
290
 
345
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
346
291
  :type execution_context: int | str | None
347
292
  :type undo: bool | None
348
293
  :param name: Name, Name of the preset, used to make the path name
@@ -354,9 +299,9 @@ def gpencil_brush_preset_add(
354
299
  """
355
300
 
356
301
  def gpencil_material_preset_add(
357
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
358
302
  execution_context: int | str | None = None,
359
303
  undo: bool | None = None,
304
+ /,
360
305
  *,
361
306
  name: str = "",
362
307
  remove_name: bool | None = False,
@@ -364,7 +309,6 @@ def gpencil_material_preset_add(
364
309
  ):
365
310
  """Add or remove Grease Pencil material preset
366
311
 
367
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
368
312
  :type execution_context: int | str | None
369
313
  :type undo: bool | None
370
314
  :param name: Name, Name of the preset, used to make the path name
@@ -376,15 +320,14 @@ def gpencil_material_preset_add(
376
320
  """
377
321
 
378
322
  def new(
379
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
380
323
  execution_context: int | str | None = None,
381
324
  undo: bool | None = None,
325
+ /,
382
326
  *,
383
327
  type: typing.Literal["NEW", "EMPTY", "LINK_COPY", "FULL_COPY"] | None = "NEW",
384
328
  ):
385
329
  """Add new scene by type
386
330
 
387
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
388
331
  :type execution_context: int | str | None
389
332
  :type undo: bool | None
390
333
  :param type: Type
@@ -404,15 +347,14 @@ def new(
404
347
  """
405
348
 
406
349
  def new_sequencer(
407
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
408
350
  execution_context: int | str | None = None,
409
351
  undo: bool | None = None,
352
+ /,
410
353
  *,
411
354
  type: typing.Literal["NEW", "EMPTY", "LINK_COPY", "FULL_COPY"] | None = "NEW",
412
355
  ):
413
356
  """Add new scene by type in the sequence editor and assign to active strip
414
357
 
415
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
416
358
  :type execution_context: int | str | None
417
359
  :type undo: bool | None
418
360
  :param type: Type
@@ -432,39 +374,32 @@ def new_sequencer(
432
374
  """
433
375
 
434
376
  def render_view_add(
435
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
436
- execution_context: int | str | None = None,
437
- undo: bool | None = None,
377
+ execution_context: int | str | None = None, undo: bool | None = None
438
378
  ):
439
379
  """Add a render view
440
380
 
441
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
442
381
  :type execution_context: int | str | None
443
382
  :type undo: bool | None
444
383
  """
445
384
 
446
385
  def render_view_remove(
447
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
448
- execution_context: int | str | None = None,
449
- undo: bool | None = None,
386
+ execution_context: int | str | None = None, undo: bool | None = None
450
387
  ):
451
388
  """Remove the selected render view
452
389
 
453
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
454
390
  :type execution_context: int | str | None
455
391
  :type undo: bool | None
456
392
  """
457
393
 
458
394
  def view_layer_add(
459
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
460
395
  execution_context: int | str | None = None,
461
396
  undo: bool | None = None,
397
+ /,
462
398
  *,
463
399
  type: typing.Literal["NEW", "COPY", "EMPTY"] | None = "NEW",
464
400
  ):
465
401
  """Add a view layer
466
402
 
467
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
468
403
  :type execution_context: int | str | None
469
404
  :type undo: bool | None
470
405
  :param type: Type
@@ -481,27 +416,23 @@ def view_layer_add(
481
416
  """
482
417
 
483
418
  def view_layer_add_aov(
484
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
485
- execution_context: int | str | None = None,
486
- undo: bool | None = None,
419
+ execution_context: int | str | None = None, undo: bool | None = None
487
420
  ):
488
421
  """Add a Shader AOV
489
422
 
490
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
491
423
  :type execution_context: int | str | None
492
424
  :type undo: bool | None
493
425
  """
494
426
 
495
427
  def view_layer_add_lightgroup(
496
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
497
428
  execution_context: int | str | None = None,
498
429
  undo: bool | None = None,
430
+ /,
499
431
  *,
500
432
  name: str = "",
501
433
  ):
502
434
  """Add a Light Group
503
435
 
504
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
505
436
  :type execution_context: int | str | None
506
437
  :type undo: bool | None
507
438
  :param name: Name, Name of newly created lightgroup
@@ -509,61 +440,46 @@ def view_layer_add_lightgroup(
509
440
  """
510
441
 
511
442
  def view_layer_add_used_lightgroups(
512
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
513
- execution_context: int | str | None = None,
514
- undo: bool | None = None,
443
+ execution_context: int | str | None = None, undo: bool | None = None
515
444
  ):
516
445
  """Add all used Light Groups
517
446
 
518
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
519
447
  :type execution_context: int | str | None
520
448
  :type undo: bool | None
521
449
  """
522
450
 
523
451
  def view_layer_remove(
524
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
525
- execution_context: int | str | None = None,
526
- undo: bool | None = None,
452
+ execution_context: int | str | None = None, undo: bool | None = None
527
453
  ):
528
454
  """Remove the selected view layer
529
455
 
530
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
531
456
  :type execution_context: int | str | None
532
457
  :type undo: bool | None
533
458
  """
534
459
 
535
460
  def view_layer_remove_aov(
536
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
537
- execution_context: int | str | None = None,
538
- undo: bool | None = None,
461
+ execution_context: int | str | None = None, undo: bool | None = None
539
462
  ):
540
463
  """Remove Active AOV
541
464
 
542
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
543
465
  :type execution_context: int | str | None
544
466
  :type undo: bool | None
545
467
  """
546
468
 
547
469
  def view_layer_remove_lightgroup(
548
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
549
- execution_context: int | str | None = None,
550
- undo: bool | None = None,
470
+ execution_context: int | str | None = None, undo: bool | None = None
551
471
  ):
552
472
  """Remove Active Lightgroup
553
473
 
554
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
555
474
  :type execution_context: int | str | None
556
475
  :type undo: bool | None
557
476
  """
558
477
 
559
478
  def view_layer_remove_unused_lightgroups(
560
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
561
- execution_context: int | str | None = None,
562
- undo: bool | None = None,
479
+ execution_context: int | str | None = None, undo: bool | None = None
563
480
  ):
564
481
  """Remove all unused Light Groups
565
482
 
566
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
567
483
  :type execution_context: int | str | None
568
484
  :type undo: bool | None
569
485
  """