fake-bpy-module 20241207__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 (115) hide show
  1. addon_utils/__init__.pyi +2 -1
  2. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  3. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  4. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  5. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  6. blf/__init__.pyi +2 -1
  7. bmesh/ops/__init__.pyi +110 -53
  8. bmesh/types/__init__.pyi +18 -10
  9. bmesh/utils/__init__.pyi +14 -4
  10. bpy/app/icons/__init__.pyi +4 -1
  11. bpy/app/translations/__init__.pyi +4 -1
  12. bpy/msgbus/__init__.pyi +8 -5
  13. bpy/ops/action/__init__.pyi +38 -138
  14. bpy/ops/anim/__init__.pyi +61 -179
  15. bpy/ops/armature/__init__.pyi +48 -147
  16. bpy/ops/asset/__init__.pyi +16 -71
  17. bpy/ops/boid/__init__.pyi +8 -41
  18. bpy/ops/brush/__init__.pyi +13 -39
  19. bpy/ops/buttons/__init__.pyi +6 -29
  20. bpy/ops/cachefile/__init__.pyi +5 -19
  21. bpy/ops/camera/__init__.pyi +2 -5
  22. bpy/ops/clip/__init__.pyi +92 -290
  23. bpy/ops/cloth/__init__.pyi +1 -3
  24. bpy/ops/collection/__init__.pyi +9 -25
  25. bpy/ops/console/__init__.pyi +21 -79
  26. bpy/ops/constraint/__init__.pyi +18 -45
  27. bpy/ops/curve/__init__.pyi +51 -180
  28. bpy/ops/curves/__init__.pyi +28 -100
  29. bpy/ops/cycles/__init__.pyi +3 -9
  30. bpy/ops/dpaint/__init__.pyi +5 -19
  31. bpy/ops/ed/__init__.pyi +12 -53
  32. bpy/ops/export_anim/__init__.pyi +1 -3
  33. bpy/ops/export_scene/__init__.pyi +2 -5
  34. bpy/ops/extensions/__init__.pyi +34 -110
  35. bpy/ops/file/__init__.pyi +40 -167
  36. bpy/ops/fluid/__init__.pyi +14 -77
  37. bpy/ops/font/__init__.pyi +23 -85
  38. bpy/ops/geometry/__init__.pyi +10 -27
  39. bpy/ops/gizmogroup/__init__.pyi +2 -9
  40. bpy/ops/gpencil/__init__.pyi +8 -32
  41. bpy/ops/graph/__init__.pyi +65 -184
  42. bpy/ops/grease_pencil/__init__.pyi +108 -290
  43. bpy/ops/image/__init__.pyi +49 -154
  44. bpy/ops/import_anim/__init__.pyi +1 -3
  45. bpy/ops/import_curve/__init__.pyi +1 -3
  46. bpy/ops/import_scene/__init__.pyi +2 -4
  47. bpy/ops/info/__init__.pyi +7 -29
  48. bpy/ops/lattice/__init__.pyi +8 -29
  49. bpy/ops/marker/__init__.pyi +11 -31
  50. bpy/ops/mask/__init__.pyi +39 -132
  51. bpy/ops/material/__init__.pyi +3 -19
  52. bpy/ops/mball/__init__.pyi +8 -19
  53. bpy/ops/mesh/__init__.pyi +164 -401
  54. bpy/ops/nla/__init__.pyi +39 -147
  55. bpy/ops/node/__init__.pyi +115 -390
  56. bpy/ops/object/__init__.pyi +237 -630
  57. bpy/ops/outliner/__init__.pyi +71 -263
  58. bpy/ops/paint/__init__.pyi +54 -140
  59. bpy/ops/paintcurve/__init__.pyi +8 -33
  60. bpy/ops/palette/__init__.pyi +7 -27
  61. bpy/ops/particle/__init__.pyi +36 -134
  62. bpy/ops/pose/__init__.pyi +51 -169
  63. bpy/ops/poselib/__init__.pyi +9 -33
  64. bpy/ops/preferences/__init__.pyi +35 -94
  65. bpy/ops/ptcache/__init__.pyi +7 -33
  66. bpy/ops/render/__init__.pyi +13 -37
  67. bpy/ops/rigidbody/__init__.pyi +13 -45
  68. bpy/ops/scene/__init__.pyi +37 -121
  69. bpy/ops/screen/__init__.pyi +39 -137
  70. bpy/ops/script/__init__.pyi +3 -11
  71. bpy/ops/sculpt/__init__.pyi +37 -94
  72. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  73. bpy/ops/sequencer/__init__.pyi +89 -284
  74. bpy/ops/sound/__init__.pyi +7 -23
  75. bpy/ops/spreadsheet/__init__.pyi +4 -15
  76. bpy/ops/surface/__init__.pyi +6 -13
  77. bpy/ops/text/__init__.pyi +43 -175
  78. bpy/ops/text_editor/__init__.pyi +1 -3
  79. bpy/ops/texture/__init__.pyi +4 -21
  80. bpy/ops/transform/__init__.pyi +27 -61
  81. bpy/ops/ui/__init__.pyi +34 -117
  82. bpy/ops/uilist/__init__.pyi +3 -7
  83. bpy/ops/uv/__init__.pyi +49 -134
  84. bpy/ops/view2d/__init__.pyi +14 -39
  85. bpy/ops/view3d/__init__.pyi +67 -232
  86. bpy/ops/wm/__init__.pyi +114 -298
  87. bpy/ops/workspace/__init__.pyi +7 -33
  88. bpy/ops/world/__init__.pyi +2 -11
  89. bpy/path/__init__.pyi +4 -2
  90. bpy/types/__init__.pyi +68 -32
  91. bpy/utils/__init__.pyi +18 -9
  92. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  93. bpy_extras/io_utils/__init__.pyi +7 -2
  94. bpy_extras/mesh_utils/__init__.pyi +19 -7
  95. bpy_extras/view3d_utils/__init__.pyi +2 -2
  96. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  97. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +115 -115
  98. freestyle/functions/__init__.pyi +16 -4
  99. freestyle/types/__init__.pyi +60 -23
  100. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  101. gpu/capabilities/__init__.pyi +2 -1
  102. gpu/state/__init__.pyi +2 -2
  103. gpu/types/__init__.pyi +2 -2
  104. gpu_extras/batch/__init__.pyi +6 -3
  105. idprop/types/__init__.pyi +4 -3
  106. imbuf/__init__.pyi +2 -1
  107. imbuf/types/__init__.pyi +5 -2
  108. mathutils/__init__.pyi +25 -14
  109. mathutils/bvhtree/__init__.pyi +8 -7
  110. mathutils/geometry/__init__.pyi +38 -17
  111. mathutils/interpolate/__init__.pyi +2 -1
  112. mathutils/kdtree/__init__.pyi +11 -6
  113. mathutils/noise/__init__.pyi +2 -1
  114. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  115. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -5,28 +5,22 @@ import bpy.ops.transform
5
5
  import bpy.types
6
6
  import bpy.typing
7
7
 
8
- def bake_keys(
9
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
10
- execution_context: int | str | None = None,
11
- undo: bool | None = None,
12
- ):
8
+ def bake_keys(execution_context: int | str | None = None, undo: bool | None = None):
13
9
  """Add keyframes on every frame between the selected keyframes
14
10
 
15
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
16
11
  :type execution_context: int | str | None
17
12
  :type undo: bool | None
18
13
  """
19
14
 
20
15
  def blend_offset(
21
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
22
16
  execution_context: int | str | None = None,
23
17
  undo: bool | None = None,
18
+ /,
24
19
  *,
25
20
  factor: float | None = 0.0,
26
21
  ):
27
22
  """Shift selected keys to the value of the neighboring keys as a block
28
23
 
29
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
30
24
  :type execution_context: int | str | None
31
25
  :type undo: bool | None
32
26
  :param factor: Offset Factor, Control which key to offset towards and how far
@@ -34,15 +28,14 @@ def blend_offset(
34
28
  """
35
29
 
36
30
  def blend_to_default(
37
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
38
31
  execution_context: int | str | None = None,
39
32
  undo: bool | None = None,
33
+ /,
40
34
  *,
41
35
  factor: float | None = 0.0,
42
36
  ):
43
37
  """Blend selected keys to their default value from their current position
44
38
 
45
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
46
39
  :type execution_context: int | str | None
47
40
  :type undo: bool | None
48
41
  :param factor: Factor, How much to blend to the default value
@@ -50,15 +43,14 @@ def blend_to_default(
50
43
  """
51
44
 
52
45
  def blend_to_ease(
53
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
54
46
  execution_context: int | str | None = None,
55
47
  undo: bool | None = None,
48
+ /,
56
49
  *,
57
50
  factor: float | None = 0.0,
58
51
  ):
59
52
  """Blends keyframes from current state to an ease-in or ease-out curve
60
53
 
61
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
62
54
  :type execution_context: int | str | None
63
55
  :type undo: bool | None
64
56
  :param factor: Blend, Favor either original data or ease curve
@@ -66,15 +58,14 @@ def blend_to_ease(
66
58
  """
67
59
 
68
60
  def blend_to_neighbor(
69
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
70
61
  execution_context: int | str | None = None,
71
62
  undo: bool | None = None,
63
+ /,
72
64
  *,
73
65
  factor: float | None = 0.0,
74
66
  ):
75
67
  """Blend selected keyframes to their left or right neighbor
76
68
 
77
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
78
69
  :type execution_context: int | str | None
79
70
  :type undo: bool | None
80
71
  :param factor: Blend, The blend factor with 0 being the current frame
@@ -82,15 +73,14 @@ def blend_to_neighbor(
82
73
  """
83
74
 
84
75
  def breakdown(
85
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
86
76
  execution_context: int | str | None = None,
87
77
  undo: bool | None = None,
78
+ /,
88
79
  *,
89
80
  factor: float | None = 0.0,
90
81
  ):
91
82
  """Move selected keyframes to an inbetween position relative to adjacent keys
92
83
 
93
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
94
84
  :type execution_context: int | str | None
95
85
  :type undo: bool | None
96
86
  :param factor: Factor, Favor either the left or the right key
@@ -98,9 +88,9 @@ def breakdown(
98
88
  """
99
89
 
100
90
  def butterworth_smooth(
101
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
102
91
  execution_context: int | str | None = None,
103
92
  undo: bool | None = None,
93
+ /,
104
94
  *,
105
95
  cutoff_frequency: float | None = 3.0,
106
96
  filter_order: int | None = 4,
@@ -110,7 +100,6 @@ def butterworth_smooth(
110
100
  ):
111
101
  """Smooth an F-Curve while maintaining the general shape of the curve
112
102
 
113
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
114
103
  :type execution_context: int | str | None
115
104
  :type undo: bool | None
116
105
  :param cutoff_frequency: Frequency Cutoff (Hz), Lower values give a smoother curve
@@ -126,16 +115,15 @@ def butterworth_smooth(
126
115
  """
127
116
 
128
117
  def clean(
129
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
130
118
  execution_context: int | str | None = None,
131
119
  undo: bool | None = None,
120
+ /,
132
121
  *,
133
122
  threshold: float | None = 0.001,
134
123
  channels: bool | None = False,
135
124
  ):
136
125
  """Simplify F-Curves by removing closely spaced keyframes
137
126
 
138
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
139
127
  :type execution_context: int | str | None
140
128
  :type undo: bool | None
141
129
  :param threshold: Threshold
@@ -145,9 +133,9 @@ def clean(
145
133
  """
146
134
 
147
135
  def click_insert(
148
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
149
136
  execution_context: int | str | None = None,
150
137
  undo: bool | None = None,
138
+ /,
151
139
  *,
152
140
  frame: float | None = 1.0,
153
141
  value: float | None = 1.0,
@@ -155,7 +143,6 @@ def click_insert(
155
143
  ):
156
144
  """Insert new keyframe at the cursor position for the active F-Curve
157
145
 
158
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
159
146
  :type execution_context: int | str | None
160
147
  :type undo: bool | None
161
148
  :param frame: Frame Number, Frame to insert keyframe on
@@ -167,9 +154,9 @@ def click_insert(
167
154
  """
168
155
 
169
156
  def clickselect(
170
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
171
157
  execution_context: int | str | None = None,
172
158
  undo: bool | None = None,
159
+ /,
173
160
  *,
174
161
  wait_to_deselect_others: bool | None = False,
175
162
  mouse_x: int | None = 0,
@@ -181,7 +168,6 @@ def clickselect(
181
168
  ):
182
169
  """Select keyframes by clicking on them
183
170
 
184
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
185
171
  :type execution_context: int | str | None
186
172
  :type undo: bool | None
187
173
  :param wait_to_deselect_others: Wait to Deselect Others
@@ -200,29 +186,23 @@ def clickselect(
200
186
  :type curves: bool | None
201
187
  """
202
188
 
203
- def copy(
204
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
205
- execution_context: int | str | None = None,
206
- undo: bool | None = None,
207
- ):
189
+ def copy(execution_context: int | str | None = None, undo: bool | None = None):
208
190
  """Copy selected keyframes to the internal clipboard
209
191
 
210
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
211
192
  :type execution_context: int | str | None
212
193
  :type undo: bool | None
213
194
  """
214
195
 
215
196
  def cursor_set(
216
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
217
197
  execution_context: int | str | None = None,
218
198
  undo: bool | None = None,
199
+ /,
219
200
  *,
220
201
  frame: float | None = 0.0,
221
202
  value: float | None = 0.0,
222
203
  ):
223
204
  """Interactively set the current frame and value cursor
224
205
 
225
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
226
206
  :type execution_context: int | str | None
227
207
  :type undo: bool | None
228
208
  :param frame: Frame
@@ -232,9 +212,9 @@ def cursor_set(
232
212
  """
233
213
 
234
214
  def decimate(
235
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
236
215
  execution_context: int | str | None = None,
237
216
  undo: bool | None = None,
217
+ /,
238
218
  *,
239
219
  mode: typing.Literal["RATIO", "ERROR"] | None = "RATIO",
240
220
  factor: float | None = 0.333333,
@@ -242,7 +222,6 @@ def decimate(
242
222
  ):
243
223
  """Decimate F-Curves by removing keyframes that influence the curve shape the least
244
224
 
245
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
246
225
  :type execution_context: int | str | None
247
226
  :type undo: bool | None
248
227
  :param mode: Mode, Which mode to use for decimation
@@ -260,15 +239,14 @@ def decimate(
260
239
  """
261
240
 
262
241
  def delete(
263
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
264
242
  execution_context: int | str | None = None,
265
243
  undo: bool | None = None,
244
+ /,
266
245
  *,
267
246
  confirm: bool | None = True,
268
247
  ):
269
248
  """Remove all selected keyframes
270
249
 
271
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
272
250
  :type execution_context: int | str | None
273
251
  :type undo: bool | None
274
252
  :param confirm: Confirm, Prompt for confirmation
@@ -276,39 +254,32 @@ def delete(
276
254
  """
277
255
 
278
256
  def driver_delete_invalid(
279
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
280
- execution_context: int | str | None = None,
281
- undo: bool | None = None,
257
+ execution_context: int | str | None = None, undo: bool | None = None
282
258
  ):
283
259
  """Delete all visible drivers considered invalid
284
260
 
285
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
286
261
  :type execution_context: int | str | None
287
262
  :type undo: bool | None
288
263
  """
289
264
 
290
265
  def driver_variables_copy(
291
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
292
- execution_context: int | str | None = None,
293
- undo: bool | None = None,
266
+ execution_context: int | str | None = None, undo: bool | None = None
294
267
  ):
295
268
  """Copy the driver variables of the active driver
296
269
 
297
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
298
270
  :type execution_context: int | str | None
299
271
  :type undo: bool | None
300
272
  """
301
273
 
302
274
  def driver_variables_paste(
303
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
304
275
  execution_context: int | str | None = None,
305
276
  undo: bool | None = None,
277
+ /,
306
278
  *,
307
279
  replace: bool | None = False,
308
280
  ):
309
281
  """Add copied driver variables to the active driver
310
282
 
311
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
312
283
  :type execution_context: int | str | None
313
284
  :type undo: bool | None
314
285
  :param replace: Replace Existing, Replace existing driver variables, instead of just appending to the end of the existing list
@@ -316,15 +287,14 @@ def driver_variables_paste(
316
287
  """
317
288
 
318
289
  def duplicate(
319
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
320
290
  execution_context: int | str | None = None,
321
291
  undo: bool | None = None,
292
+ /,
322
293
  *,
323
294
  mode: bpy.typing.TransformModeTypeItems | None = "TRANSLATION",
324
295
  ):
325
296
  """Make a copy of all selected keyframes
326
297
 
327
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
328
298
  :type execution_context: int | str | None
329
299
  :type undo: bool | None
330
300
  :param mode: Mode
@@ -332,16 +302,15 @@ def duplicate(
332
302
  """
333
303
 
334
304
  def duplicate_move(
335
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
336
305
  execution_context: int | str | None = None,
337
306
  undo: bool | None = None,
307
+ /,
338
308
  *,
339
309
  GRAPH_OT_duplicate: duplicate | None = None,
340
310
  TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
341
311
  ):
342
312
  """Make a copy of all selected keyframes and move them
343
313
 
344
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
345
314
  :type execution_context: int | str | None
346
315
  :type undo: bool | None
347
316
  :param GRAPH_OT_duplicate: Duplicate Keyframes, Make a copy of all selected keyframes
@@ -351,16 +320,15 @@ def duplicate_move(
351
320
  """
352
321
 
353
322
  def ease(
354
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
355
323
  execution_context: int | str | None = None,
356
324
  undo: bool | None = None,
325
+ /,
357
326
  *,
358
327
  factor: float | None = 0.0,
359
328
  sharpness: float | None = 2.0,
360
329
  ):
361
330
  """Align keyframes on a ease-in or ease-out curve
362
331
 
363
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
364
332
  :type execution_context: int | str | None
365
333
  :type undo: bool | None
366
334
  :param factor: Curve Bend, Defines if the keys should be aligned on an ease-in or ease-out curve
@@ -370,15 +338,14 @@ def ease(
370
338
  """
371
339
 
372
340
  def easing_type(
373
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
374
341
  execution_context: int | str | None = None,
375
342
  undo: bool | None = None,
343
+ /,
376
344
  *,
377
345
  type: bpy.typing.BeztripleInterpolationEasingItems | None = "AUTO",
378
346
  ):
379
347
  """Set easing type for the F-Curve segments starting from the selected keyframes
380
348
 
381
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
382
349
  :type execution_context: int | str | None
383
350
  :type undo: bool | None
384
351
  :param type: Type
@@ -386,9 +353,9 @@ def easing_type(
386
353
  """
387
354
 
388
355
  def equalize_handles(
389
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
390
356
  execution_context: int | str | None = None,
391
357
  undo: bool | None = None,
358
+ /,
392
359
  *,
393
360
  side: typing.Literal["LEFT", "RIGHT", "BOTH"] | None = "LEFT",
394
361
  handle_length: float | None = 5.0,
@@ -396,7 +363,6 @@ def equalize_handles(
396
363
  ):
397
364
  """Ensure selected keyframes' handles have equal length, optionally making them horizontal. Automatic, Automatic Clamped, or Vector handle types will be converted to Aligned
398
365
 
399
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
400
366
  :type execution_context: int | str | None
401
367
  :type undo: bool | None
402
368
  :param side: Side, Side of the keyframes' Bézier handles to affect
@@ -416,29 +382,23 @@ def equalize_handles(
416
382
  :type flatten: bool | None
417
383
  """
418
384
 
419
- def euler_filter(
420
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
421
- execution_context: int | str | None = None,
422
- undo: bool | None = None,
423
- ):
385
+ def euler_filter(execution_context: int | str | None = None, undo: bool | None = None):
424
386
  """Fix large jumps and flips in the selected Euler Rotation F-Curves arising from rotation values being clipped when baking physics
425
387
 
426
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
427
388
  :type execution_context: int | str | None
428
389
  :type undo: bool | None
429
390
  """
430
391
 
431
392
  def extrapolation_type(
432
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
433
393
  execution_context: int | str | None = None,
434
394
  undo: bool | None = None,
395
+ /,
435
396
  *,
436
397
  type: typing.Literal["CONSTANT", "LINEAR", "MAKE_CYCLIC", "CLEAR_CYCLIC"]
437
398
  | None = "CONSTANT",
438
399
  ):
439
400
  """Set extrapolation mode for selected F-Curves
440
401
 
441
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
442
402
  :type execution_context: int | str | None
443
403
  :type undo: bool | None
444
404
  :param type: Type
@@ -458,16 +418,15 @@ def extrapolation_type(
458
418
  """
459
419
 
460
420
  def fmodifier_add(
461
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
462
421
  execution_context: int | str | None = None,
463
422
  undo: bool | None = None,
423
+ /,
464
424
  *,
465
425
  type: bpy.typing.FmodifierTypeItems | None = "NULL",
466
426
  only_active: bool | None = False,
467
427
  ):
468
428
  """Add F-Modifier to the active/selected F-Curves
469
429
 
470
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
471
430
  :type execution_context: int | str | None
472
431
  :type undo: bool | None
473
432
  :param type: Type
@@ -477,28 +436,24 @@ def fmodifier_add(
477
436
  """
478
437
 
479
438
  def fmodifier_copy(
480
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
481
- execution_context: int | str | None = None,
482
- undo: bool | None = None,
439
+ execution_context: int | str | None = None, undo: bool | None = None
483
440
  ):
484
441
  """Copy the F-Modifier(s) of the active F-Curve
485
442
 
486
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
487
443
  :type execution_context: int | str | None
488
444
  :type undo: bool | None
489
445
  """
490
446
 
491
447
  def fmodifier_paste(
492
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
493
448
  execution_context: int | str | None = None,
494
449
  undo: bool | None = None,
450
+ /,
495
451
  *,
496
452
  only_active: bool | None = False,
497
453
  replace: bool | None = False,
498
454
  ):
499
455
  """Add copied F-Modifiers to the selected F-Curves
500
456
 
501
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
502
457
  :type execution_context: int | str | None
503
458
  :type undo: bool | None
504
459
  :param only_active: Only Active, Only paste F-Modifiers on active F-Curve
@@ -507,22 +462,17 @@ def fmodifier_paste(
507
462
  :type replace: bool | None
508
463
  """
509
464
 
510
- def frame_jump(
511
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
512
- execution_context: int | str | None = None,
513
- undo: bool | None = None,
514
- ):
465
+ def frame_jump(execution_context: int | str | None = None, undo: bool | None = None):
515
466
  """Place the cursor on the midpoint of selected keyframes
516
467
 
517
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
518
468
  :type execution_context: int | str | None
519
469
  :type undo: bool | None
520
470
  """
521
471
 
522
472
  def gaussian_smooth(
523
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
524
473
  execution_context: int | str | None = None,
525
474
  undo: bool | None = None,
475
+ /,
526
476
  *,
527
477
  factor: float | None = 1.0,
528
478
  sigma: float | None = 0.33,
@@ -530,7 +480,6 @@ def gaussian_smooth(
530
480
  ):
531
481
  """Smooth the curve using a Gaussian filter
532
482
 
533
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
534
483
  :type execution_context: int | str | None
535
484
  :type undo: bool | None
536
485
  :param factor: Factor, How much to blend to the default value
@@ -542,39 +491,32 @@ def gaussian_smooth(
542
491
  """
543
492
 
544
493
  def ghost_curves_clear(
545
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
546
- execution_context: int | str | None = None,
547
- undo: bool | None = None,
494
+ execution_context: int | str | None = None, undo: bool | None = None
548
495
  ):
549
496
  """Clear F-Curve snapshots (Ghosts) for active Graph Editor
550
497
 
551
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
552
498
  :type execution_context: int | str | None
553
499
  :type undo: bool | None
554
500
  """
555
501
 
556
502
  def ghost_curves_create(
557
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
558
- execution_context: int | str | None = None,
559
- undo: bool | None = None,
503
+ execution_context: int | str | None = None, undo: bool | None = None
560
504
  ):
561
505
  """Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor
562
506
 
563
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
564
507
  :type execution_context: int | str | None
565
508
  :type undo: bool | None
566
509
  """
567
510
 
568
511
  def handle_type(
569
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
570
512
  execution_context: int | str | None = None,
571
513
  undo: bool | None = None,
514
+ /,
572
515
  *,
573
516
  type: bpy.typing.KeyframeHandleTypeItems | None = "FREE",
574
517
  ):
575
518
  """Set type of handle for selected keyframes
576
519
 
577
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
578
520
  :type execution_context: int | str | None
579
521
  :type undo: bool | None
580
522
  :param type: Type
@@ -582,15 +524,14 @@ def handle_type(
582
524
  """
583
525
 
584
526
  def hide(
585
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
586
527
  execution_context: int | str | None = None,
587
528
  undo: bool | None = None,
529
+ /,
588
530
  *,
589
531
  unselected: bool | None = False,
590
532
  ):
591
533
  """Hide selected curves from Graph Editor view
592
534
 
593
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
594
535
  :type execution_context: int | str | None
595
536
  :type undo: bool | None
596
537
  :param unselected: Unselected, Hide unselected rather than selected curves
@@ -598,15 +539,14 @@ def hide(
598
539
  """
599
540
 
600
541
  def interpolation_type(
601
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
602
542
  execution_context: int | str | None = None,
603
543
  undo: bool | None = None,
544
+ /,
604
545
  *,
605
546
  type: bpy.typing.BeztripleInterpolationModeItems | None = "CONSTANT",
606
547
  ):
607
548
  """Set interpolation mode for the F-Curve segments starting from the selected keyframes
608
549
 
609
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
610
550
  :type execution_context: int | str | None
611
551
  :type undo: bool | None
612
552
  :param type: Type
@@ -614,16 +554,15 @@ def interpolation_type(
614
554
  """
615
555
 
616
556
  def keyframe_insert(
617
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
618
557
  execution_context: int | str | None = None,
619
558
  undo: bool | None = None,
559
+ /,
620
560
  *,
621
561
  type: typing.Literal["ALL", "SEL", "ACTIVE", "CURSOR_ACTIVE", "CURSOR_SEL"]
622
562
  | None = "ALL",
623
563
  ):
624
564
  """Insert keyframes for the specified channels
625
565
 
626
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
627
566
  :type execution_context: int | str | None
628
567
  :type undo: bool | None
629
568
  :param type: Type
@@ -646,15 +585,14 @@ def keyframe_insert(
646
585
  """
647
586
 
648
587
  def keyframe_jump(
649
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
650
588
  execution_context: int | str | None = None,
651
589
  undo: bool | None = None,
590
+ /,
652
591
  *,
653
592
  next: bool | None = True,
654
593
  ):
655
594
  """Jump to previous/next keyframe
656
595
 
657
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
658
596
  :type execution_context: int | str | None
659
597
  :type undo: bool | None
660
598
  :param next: Next Keyframe
@@ -662,27 +600,23 @@ def keyframe_jump(
662
600
  """
663
601
 
664
602
  def keys_to_samples(
665
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
666
- execution_context: int | str | None = None,
667
- undo: bool | None = None,
603
+ execution_context: int | str | None = None, undo: bool | None = None
668
604
  ):
669
605
  """Convert selected channels to an uneditable set of samples to save storage space
670
606
 
671
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
672
607
  :type execution_context: int | str | None
673
608
  :type undo: bool | None
674
609
  """
675
610
 
676
611
  def match_slope(
677
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
678
612
  execution_context: int | str | None = None,
679
613
  undo: bool | None = None,
614
+ /,
680
615
  *,
681
616
  factor: float | None = 0.0,
682
617
  ):
683
618
  """Blend selected keys to the slope of neighboring ones
684
619
 
685
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
686
620
  :type execution_context: int | str | None
687
621
  :type undo: bool | None
688
622
  :param factor: Factor, Defines which keys to use as slope and how much to blend towards them
@@ -690,15 +624,14 @@ def match_slope(
690
624
  """
691
625
 
692
626
  def mirror(
693
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
694
627
  execution_context: int | str | None = None,
695
628
  undo: bool | None = None,
629
+ /,
696
630
  *,
697
631
  type: typing.Literal["CFRA", "VALUE", "YAXIS", "XAXIS", "MARKER"] | None = "CFRA",
698
632
  ):
699
633
  """Flip selected keyframes over the selected mirror line
700
634
 
701
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
702
635
  :type execution_context: int | str | None
703
636
  :type undo: bool | None
704
637
  :param type: Type
@@ -721,9 +654,9 @@ def mirror(
721
654
  """
722
655
 
723
656
  def paste(
724
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
725
657
  execution_context: int | str | None = None,
726
658
  undo: bool | None = None,
659
+ /,
727
660
  *,
728
661
  offset: bpy.typing.KeyframePasteOffsetItems | None = "START",
729
662
  value_offset: bpy.typing.KeyframePasteOffsetValueItems | None = "NONE",
@@ -732,7 +665,6 @@ def paste(
732
665
  ):
733
666
  """Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
734
667
 
735
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
736
668
  :type execution_context: int | str | None
737
669
  :type undo: bool | None
738
670
  :param offset: Frame Offset, Paste time offset of keys
@@ -746,27 +678,23 @@ def paste(
746
678
  """
747
679
 
748
680
  def previewrange_set(
749
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
750
- execution_context: int | str | None = None,
751
- undo: bool | None = None,
681
+ execution_context: int | str | None = None, undo: bool | None = None
752
682
  ):
753
683
  """Set Preview Range based on range of selected keyframes
754
684
 
755
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
756
685
  :type execution_context: int | str | None
757
686
  :type undo: bool | None
758
687
  """
759
688
 
760
689
  def push_pull(
761
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
762
690
  execution_context: int | str | None = None,
763
691
  undo: bool | None = None,
692
+ /,
764
693
  *,
765
694
  factor: float | None = 1.0,
766
695
  ):
767
696
  """Exaggerate or minimize the value of the selected keys
768
697
 
769
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
770
698
  :type execution_context: int | str | None
771
699
  :type undo: bool | None
772
700
  :param factor: Factor, Control how far to push or pull the keys
@@ -774,15 +702,14 @@ def push_pull(
774
702
  """
775
703
 
776
704
  def reveal(
777
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
778
705
  execution_context: int | str | None = None,
779
706
  undo: bool | None = None,
707
+ /,
780
708
  *,
781
709
  select: bool | None = True,
782
710
  ):
783
711
  """Make previously hidden curves visible again in Graph Editor view
784
712
 
785
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
786
713
  :type execution_context: int | str | None
787
714
  :type undo: bool | None
788
715
  :param select: Select
@@ -790,27 +717,23 @@ def reveal(
790
717
  """
791
718
 
792
719
  def samples_to_keys(
793
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
794
- execution_context: int | str | None = None,
795
- undo: bool | None = None,
720
+ execution_context: int | str | None = None, undo: bool | None = None
796
721
  ):
797
722
  """Convert selected channels from samples to keyframes
798
723
 
799
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
800
724
  :type execution_context: int | str | None
801
725
  :type undo: bool | None
802
726
  """
803
727
 
804
728
  def scale_average(
805
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
806
729
  execution_context: int | str | None = None,
807
730
  undo: bool | None = None,
731
+ /,
808
732
  *,
809
733
  factor: float | None = 1.0,
810
734
  ):
811
735
  """Scale selected key values by their combined average
812
736
 
813
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
814
737
  :type execution_context: int | str | None
815
738
  :type undo: bool | None
816
739
  :param factor: Scale Factor, The scale factor applied to the curve segments
@@ -818,16 +741,15 @@ def scale_average(
818
741
  """
819
742
 
820
743
  def scale_from_neighbor(
821
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
822
744
  execution_context: int | str | None = None,
823
745
  undo: bool | None = None,
746
+ /,
824
747
  *,
825
748
  factor: float | None = 0.0,
826
749
  anchor: typing.Literal["LEFT", "RIGHT"] | None = "LEFT",
827
750
  ):
828
751
  """Increase or decrease the value of selected keys in relationship to the neighboring one
829
752
 
830
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
831
753
  :type execution_context: int | str | None
832
754
  :type undo: bool | None
833
755
  :param factor: Factor, The factor to scale keys with
@@ -837,15 +759,14 @@ def scale_from_neighbor(
837
759
  """
838
760
 
839
761
  def select_all(
840
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
841
762
  execution_context: int | str | None = None,
842
763
  undo: bool | None = None,
764
+ /,
843
765
  *,
844
766
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
845
767
  ):
846
768
  """Toggle selection of all keyframes
847
769
 
848
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
849
770
  :type execution_context: int | str | None
850
771
  :type undo: bool | None
851
772
  :param action: Action, Selection action to execute
@@ -865,9 +786,9 @@ def select_all(
865
786
  """
866
787
 
867
788
  def select_box(
868
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
869
789
  execution_context: int | str | None = None,
870
790
  undo: bool | None = None,
791
+ /,
871
792
  *,
872
793
  axis_range: bool | None = False,
873
794
  include_handles: bool | None = True,
@@ -882,7 +803,6 @@ def select_box(
882
803
  ):
883
804
  """Select all keyframes within the specified region
884
805
 
885
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
886
806
  :type execution_context: int | str | None
887
807
  :type undo: bool | None
888
808
  :param axis_range: Axis Range
@@ -917,9 +837,9 @@ def select_box(
917
837
  """
918
838
 
919
839
  def select_circle(
920
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
921
840
  execution_context: int | str | None = None,
922
841
  undo: bool | None = None,
842
+ /,
923
843
  *,
924
844
  x: int | None = 0,
925
845
  y: int | None = 0,
@@ -930,7 +850,6 @@ def select_circle(
930
850
  ):
931
851
  """Select keyframe points using circle selection
932
852
 
933
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
934
853
  :type execution_context: int | str | None
935
854
  :type undo: bool | None
936
855
  :param x: X
@@ -957,16 +876,15 @@ def select_circle(
957
876
  """
958
877
 
959
878
  def select_column(
960
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
961
879
  execution_context: int | str | None = None,
962
880
  undo: bool | None = None,
881
+ /,
963
882
  *,
964
883
  mode: typing.Literal["KEYS", "CFRA", "MARKERS_COLUMN", "MARKERS_BETWEEN"]
965
884
  | None = "KEYS",
966
885
  ):
967
886
  """Select all keyframes on the specified frame(s)
968
887
 
969
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
970
888
  :type execution_context: int | str | None
971
889
  :type undo: bool | None
972
890
  :param mode: Mode
@@ -974,9 +892,9 @@ def select_column(
974
892
  """
975
893
 
976
894
  def select_key_handles(
977
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
978
895
  execution_context: int | str | None = None,
979
896
  undo: bool | None = None,
897
+ /,
980
898
  *,
981
899
  left_handle_action: typing.Literal["SELECT", "DESELECT", "KEEP"] | None = "SELECT",
982
900
  right_handle_action: typing.Literal["SELECT", "DESELECT", "KEEP"] | None = "SELECT",
@@ -984,7 +902,6 @@ def select_key_handles(
984
902
  ):
985
903
  """For selected keyframes, select/deselect any combination of the key itself and its handles
986
904
 
987
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
988
905
  :type execution_context: int | str | None
989
906
  :type undo: bool | None
990
907
  :param left_handle_action: Left Handle, Effect on the left handle
@@ -1023,9 +940,9 @@ def select_key_handles(
1023
940
  """
1024
941
 
1025
942
  def select_lasso(
1026
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1027
943
  execution_context: int | str | None = None,
1028
944
  undo: bool | None = None,
945
+ /,
1029
946
  *,
1030
947
  path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
1031
948
  use_smooth_stroke: bool | None = False,
@@ -1036,7 +953,6 @@ def select_lasso(
1036
953
  ):
1037
954
  """Select keyframe points using lasso selection
1038
955
 
1039
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1040
956
  :type execution_context: int | str | None
1041
957
  :type undo: bool | None
1042
958
  :param path: Path
@@ -1063,16 +979,15 @@ def select_lasso(
1063
979
  """
1064
980
 
1065
981
  def select_leftright(
1066
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1067
982
  execution_context: int | str | None = None,
1068
983
  undo: bool | None = None,
984
+ /,
1069
985
  *,
1070
986
  mode: typing.Literal["CHECK", "LEFT", "RIGHT"] | None = "CHECK",
1071
987
  extend: bool | None = False,
1072
988
  ):
1073
989
  """Select keyframes to the left or the right of the current frame
1074
990
 
1075
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1076
991
  :type execution_context: int | str | None
1077
992
  :type undo: bool | None
1078
993
  :param mode: Mode
@@ -1081,53 +996,37 @@ def select_leftright(
1081
996
  :type extend: bool | None
1082
997
  """
1083
998
 
1084
- def select_less(
1085
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1086
- execution_context: int | str | None = None,
1087
- undo: bool | None = None,
1088
- ):
999
+ def select_less(execution_context: int | str | None = None, undo: bool | None = None):
1089
1000
  """Deselect keyframes on ends of selection islands
1090
1001
 
1091
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1092
1002
  :type execution_context: int | str | None
1093
1003
  :type undo: bool | None
1094
1004
  """
1095
1005
 
1096
- def select_linked(
1097
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1098
- execution_context: int | str | None = None,
1099
- undo: bool | None = None,
1100
- ):
1006
+ def select_linked(execution_context: int | str | None = None, undo: bool | None = None):
1101
1007
  """Select keyframes occurring in the same F-Curves as selected ones
1102
1008
 
1103
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1104
1009
  :type execution_context: int | str | None
1105
1010
  :type undo: bool | None
1106
1011
  """
1107
1012
 
1108
- def select_more(
1109
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1110
- execution_context: int | str | None = None,
1111
- undo: bool | None = None,
1112
- ):
1013
+ def select_more(execution_context: int | str | None = None, undo: bool | None = None):
1113
1014
  """Select keyframes beside already selected ones
1114
1015
 
1115
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1116
1016
  :type execution_context: int | str | None
1117
1017
  :type undo: bool | None
1118
1018
  """
1119
1019
 
1120
1020
  def shear(
1121
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1122
1021
  execution_context: int | str | None = None,
1123
1022
  undo: bool | None = None,
1023
+ /,
1124
1024
  *,
1125
1025
  factor: float | None = 0.0,
1126
1026
  direction: typing.Literal["FROM_LEFT", "FROM_RIGHT"] | None = "FROM_LEFT",
1127
1027
  ):
1128
1028
  """Affect the value of the keys linearly, keeping the same relationship between them using either the left or the right key as reference
1129
1029
 
1130
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1131
1030
  :type execution_context: int | str | None
1132
1031
  :type undo: bool | None
1133
1032
  :param factor: Shear Factor, The amount of shear to apply
@@ -1142,22 +1041,17 @@ def shear(
1142
1041
  :type direction: typing.Literal['FROM_LEFT','FROM_RIGHT'] | None
1143
1042
  """
1144
1043
 
1145
- def smooth(
1146
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1147
- execution_context: int | str | None = None,
1148
- undo: bool | None = None,
1149
- ):
1044
+ def smooth(execution_context: int | str | None = None, undo: bool | None = None):
1150
1045
  """Apply weighted moving means to make selected F-Curves less bumpy
1151
1046
 
1152
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1153
1047
  :type execution_context: int | str | None
1154
1048
  :type undo: bool | None
1155
1049
  """
1156
1050
 
1157
1051
  def snap(
1158
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1159
1052
  execution_context: int | str | None = None,
1160
1053
  undo: bool | None = None,
1054
+ /,
1161
1055
  *,
1162
1056
  type: typing.Literal[
1163
1057
  "CFRA",
@@ -1171,7 +1065,6 @@ def snap(
1171
1065
  ):
1172
1066
  """Snap selected keyframes to the chosen times/values
1173
1067
 
1174
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1175
1068
  :type execution_context: int | str | None
1176
1069
  :type undo: bool | None
1177
1070
  :param type: Type
@@ -1197,21 +1090,18 @@ def snap(
1197
1090
  """
1198
1091
 
1199
1092
  def snap_cursor_value(
1200
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1201
- execution_context: int | str | None = None,
1202
- undo: bool | None = None,
1093
+ execution_context: int | str | None = None, undo: bool | None = None
1203
1094
  ):
1204
1095
  """Place the cursor value on the average value of selected keyframes
1205
1096
 
1206
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1207
1097
  :type execution_context: int | str | None
1208
1098
  :type undo: bool | None
1209
1099
  """
1210
1100
 
1211
1101
  def sound_to_samples(
1212
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1213
1102
  execution_context: int | str | None = None,
1214
1103
  undo: bool | None = None,
1104
+ /,
1215
1105
  *,
1216
1106
  filepath: str = "",
1217
1107
  check_existing: bool | None = False,
@@ -1252,7 +1142,6 @@ def sound_to_samples(
1252
1142
  ):
1253
1143
  """Bakes a sound wave to samples on selected channels
1254
1144
 
1255
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1256
1145
  :type execution_context: int | str | None
1257
1146
  :type undo: bool | None
1258
1147
  :param filepath: File Path, Path to file
@@ -1336,15 +1225,14 @@ def sound_to_samples(
1336
1225
  """
1337
1226
 
1338
1227
  def time_offset(
1339
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1340
1228
  execution_context: int | str | None = None,
1341
1229
  undo: bool | None = None,
1230
+ /,
1342
1231
  *,
1343
1232
  frame_offset: float | None = 0.0,
1344
1233
  ):
1345
1234
  """Shifts the value of selected keys in time
1346
1235
 
1347
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1348
1236
  :type execution_context: int | str | None
1349
1237
  :type undo: bool | None
1350
1238
  :param frame_offset: Frame Offset, How far in frames to offset the animation
@@ -1352,43 +1240,36 @@ def time_offset(
1352
1240
  """
1353
1241
 
1354
1242
  def view_all(
1355
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1356
1243
  execution_context: int | str | None = None,
1357
1244
  undo: bool | None = None,
1245
+ /,
1358
1246
  *,
1359
1247
  include_handles: bool | None = True,
1360
1248
  ):
1361
1249
  """Reset viewable area to show full keyframe range
1362
1250
 
1363
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1364
1251
  :type execution_context: int | str | None
1365
1252
  :type undo: bool | None
1366
1253
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents
1367
1254
  :type include_handles: bool | None
1368
1255
  """
1369
1256
 
1370
- def view_frame(
1371
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1372
- execution_context: int | str | None = None,
1373
- undo: bool | None = None,
1374
- ):
1257
+ def view_frame(execution_context: int | str | None = None, undo: bool | None = None):
1375
1258
  """Move the view to the current frame
1376
1259
 
1377
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1378
1260
  :type execution_context: int | str | None
1379
1261
  :type undo: bool | None
1380
1262
  """
1381
1263
 
1382
1264
  def view_selected(
1383
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
1384
1265
  execution_context: int | str | None = None,
1385
1266
  undo: bool | None = None,
1267
+ /,
1386
1268
  *,
1387
1269
  include_handles: bool | None = True,
1388
1270
  ):
1389
1271
  """Reset viewable area to show selected keyframe range
1390
1272
 
1391
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
1392
1273
  :type execution_context: int | str | None
1393
1274
  :type undo: bool | None
1394
1275
  :param include_handles: Include Handles, Include handles of keyframes when calculating extents