fake-bpy-module 20250522__py3-none-any.whl → 20250603__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 (54) hide show
  1. _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
  2. bl_ui/node_add_menu/__init__.pyi +3 -3
  3. bl_ui/node_add_menu_geometry/__init__.pyi +2 -2
  4. bl_ui/properties_paint_common/__init__.pyi +1 -0
  5. bl_ui/space_dopesheet/__init__.pyi +24 -0
  6. bl_ui/space_graph/__init__.pyi +22 -0
  7. bl_ui/space_nla/__init__.pyi +22 -0
  8. bl_ui/space_node/__init__.pyi +28 -0
  9. bl_ui/space_sequencer/__init__.pyi +49 -0
  10. bl_ui/space_spreadsheet/__init__.pyi +33 -19
  11. bl_ui/space_view3d_toolbar/__init__.pyi +41 -0
  12. bl_ui/utils/__init__.pyi +17 -0
  13. bpy/app/__init__.pyi +3 -3
  14. bpy/app/timers/__init__.pyi +0 -9
  15. bpy/ops/action/__init__.pyi +14 -13
  16. bpy/ops/boid/__init__.pyi +3 -3
  17. bpy/ops/brush/__init__.pyi +4 -3
  18. bpy/ops/clip/__init__.pyi +3 -3
  19. bpy/ops/curve/__init__.pyi +5 -5
  20. bpy/ops/curves/__init__.pyi +9 -9
  21. bpy/ops/dpaint/__init__.pyi +3 -3
  22. bpy/ops/geometry/__init__.pyi +22 -19
  23. bpy/ops/graph/__init__.pyi +19 -17
  24. bpy/ops/grease_pencil/__init__.pyi +50 -9
  25. bpy/ops/image/__init__.pyi +12 -9
  26. bpy/ops/lattice/__init__.pyi +3 -3
  27. bpy/ops/mesh/__init__.pyi +45 -43
  28. bpy/ops/nla/__init__.pyi +3 -3
  29. bpy/ops/node/__init__.pyi +40 -3
  30. bpy/ops/object/__init__.pyi +76 -69
  31. bpy/ops/outliner/__init__.pyi +5 -5
  32. bpy/ops/paint/__init__.pyi +9 -7
  33. bpy/ops/pose/__init__.pyi +15 -13
  34. bpy/ops/rigidbody/__init__.pyi +9 -9
  35. bpy/ops/scene/__init__.pyi +12 -9
  36. bpy/ops/screen/__init__.pyi +8 -8
  37. bpy/ops/sequencer/__init__.pyi +63 -48
  38. bpy/ops/sound/__init__.pyi +3 -3
  39. bpy/ops/transform/__init__.pyi +89 -73
  40. bpy/ops/uv/__init__.pyi +3 -3
  41. bpy/ops/wm/__init__.pyi +35 -22
  42. bpy/props/__init__.pyi +61 -59
  43. bpy/{_typing → stub_internal}/rna_enums/__init__.pyi +3 -1
  44. bpy/types/__init__.pyi +40409 -33948
  45. {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/METADATA +1 -1
  46. {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/RECORD +54 -54
  47. {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/WHEEL +1 -1
  48. freestyle/utils/__init__.pyi +1 -1
  49. gpu/__init__.pyi +35 -3
  50. gpu/shader/__init__.pyi +16 -0
  51. gpu/types/__init__.pyi +1 -1
  52. mathutils/__init__.pyi +4 -6
  53. /bpy/{_typing → stub_internal}/__init__.pyi +0 -0
  54. {fake_bpy_module-20250522.dist-info → fake_bpy_module-20250603.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def bake_to_keyframes(
8
8
  execution_context: int | str | None = None,
@@ -101,14 +101,14 @@ def constraint_add(
101
101
  undo: bool | None = None,
102
102
  /,
103
103
  *,
104
- type: bpy._typing.rna_enums.RigidbodyConstraintTypeItems | None = "FIXED",
104
+ type: bpy.stub_internal.rna_enums.RigidbodyConstraintTypeItems | None = "FIXED",
105
105
  ):
106
106
  """Add Rigid Body Constraint to active object
107
107
 
108
108
  :type execution_context: int | str | None
109
109
  :type undo: bool | None
110
110
  :param type: Rigid Body Constraint Type
111
- :type type: bpy._typing.rna_enums.RigidbodyConstraintTypeItems | None
111
+ :type type: bpy.stub_internal.rna_enums.RigidbodyConstraintTypeItems | None
112
112
  """
113
113
 
114
114
  def constraint_remove(
@@ -143,14 +143,14 @@ def object_add(
143
143
  undo: bool | None = None,
144
144
  /,
145
145
  *,
146
- type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
146
+ type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
147
147
  ):
148
148
  """Add active object as Rigid Body
149
149
 
150
150
  :type execution_context: int | str | None
151
151
  :type undo: bool | None
152
152
  :param type: Rigid Body Type
153
- :type type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None
153
+ :type type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None
154
154
  """
155
155
 
156
156
  def object_remove(execution_context: int | str | None = None, undo: bool | None = None):
@@ -174,14 +174,14 @@ def objects_add(
174
174
  undo: bool | None = None,
175
175
  /,
176
176
  *,
177
- type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
177
+ type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
178
178
  ):
179
179
  """Add selected objects as Rigid Bodies
180
180
 
181
181
  :type execution_context: int | str | None
182
182
  :type undo: bool | None
183
183
  :param type: Rigid Body Type
184
- :type type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None
184
+ :type type: bpy.stub_internal.rna_enums.RigidbodyObjectTypeItems | None
185
185
  """
186
186
 
187
187
  def objects_remove(
@@ -198,14 +198,14 @@ def shape_change(
198
198
  undo: bool | None = None,
199
199
  /,
200
200
  *,
201
- type: bpy._typing.rna_enums.RigidbodyObjectShapeItems | None = "MESH",
201
+ type: bpy.stub_internal.rna_enums.RigidbodyObjectShapeItems | None = "MESH",
202
202
  ):
203
203
  """Change collision shapes for selected Rigid Body Objects
204
204
 
205
205
  :type execution_context: int | str | None
206
206
  :type undo: bool | None
207
207
  :param type: Rigid Body Shape
208
- :type type: bpy._typing.rna_enums.RigidbodyObjectShapeItems | None
208
+ :type type: bpy.stub_internal.rna_enums.RigidbodyObjectShapeItems | None
209
209
  """
210
210
 
211
211
  def world_add(execution_context: int | str | None = None, undo: bool | None = None):
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def delete(execution_context: int | str | None = None, undo: bool | None = None):
8
8
  """Delete active scene
@@ -34,14 +34,15 @@ def freestyle_alpha_modifier_add(
34
34
  undo: bool | None = None,
35
35
  /,
36
36
  *,
37
- type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None = "ALONG_STROKE",
37
+ type: bpy.stub_internal.rna_enums.LinestyleAlphaModifierTypeItems
38
+ | None = "ALONG_STROKE",
38
39
  ):
39
40
  """Add an alpha transparency modifier to the line style associated with the active lineset
40
41
 
41
42
  :type execution_context: int | str | None
42
43
  :type undo: bool | None
43
44
  :param type: Type
44
- :type type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None
45
+ :type type: bpy.stub_internal.rna_enums.LinestyleAlphaModifierTypeItems | None
45
46
  """
46
47
 
47
48
  def freestyle_color_modifier_add(
@@ -49,14 +50,15 @@ def freestyle_color_modifier_add(
49
50
  undo: bool | None = None,
50
51
  /,
51
52
  *,
52
- type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None = "ALONG_STROKE",
53
+ type: bpy.stub_internal.rna_enums.LinestyleColorModifierTypeItems
54
+ | None = "ALONG_STROKE",
53
55
  ):
54
56
  """Add a line color modifier to the line style associated with the active lineset
55
57
 
56
58
  :type execution_context: int | str | None
57
59
  :type undo: bool | None
58
60
  :param type: Type
59
- :type type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None
61
+ :type type: bpy.stub_internal.rna_enums.LinestyleColorModifierTypeItems | None
60
62
  """
61
63
 
62
64
  def freestyle_fill_range_by_selection(
@@ -91,14 +93,15 @@ def freestyle_geometry_modifier_add(
91
93
  undo: bool | None = None,
92
94
  /,
93
95
  *,
94
- type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None = "2D_OFFSET",
96
+ type: bpy.stub_internal.rna_enums.LinestyleGeometryModifierTypeItems
97
+ | None = "2D_OFFSET",
95
98
  ):
96
99
  """Add a stroke geometry modifier to the line style associated with the active lineset
97
100
 
98
101
  :type execution_context: int | str | None
99
102
  :type undo: bool | None
100
103
  :param type: Type
101
- :type type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None
104
+ :type type: bpy.stub_internal.rna_enums.LinestyleGeometryModifierTypeItems | None
102
105
  """
103
106
 
104
107
  def freestyle_lineset_add(
@@ -259,7 +262,7 @@ def freestyle_thickness_modifier_add(
259
262
  undo: bool | None = None,
260
263
  /,
261
264
  *,
262
- type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems
265
+ type: bpy.stub_internal.rna_enums.LinestyleThicknessModifierTypeItems
263
266
  | None = "ALONG_STROKE",
264
267
  ):
265
268
  """Add a line thickness modifier to the line style associated with the active lineset
@@ -267,7 +270,7 @@ def freestyle_thickness_modifier_add(
267
270
  :type execution_context: int | str | None
268
271
  :type undo: bool | None
269
272
  :param type: Type
270
- :type type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems | None
273
+ :type type: bpy.stub_internal.rna_enums.LinestyleThicknessModifierTypeItems | None
271
274
  """
272
275
 
273
276
  def gltf2_action_filter_refresh(
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def actionzone(
8
8
  execution_context: int | str | None = None,
@@ -215,7 +215,7 @@ def frame_offset(
215
215
  def header_toggle_menus(
216
216
  execution_context: int | str | None = None, undo: bool | None = None
217
217
  ):
218
- """Expand or collapse the header pulldown menus
218
+ """Expand or collapse the header pull-down menus
219
219
 
220
220
  :type execution_context: int | str | None
221
221
  :type undo: bool | None
@@ -316,14 +316,14 @@ def region_toggle(
316
316
  undo: bool | None = None,
317
317
  /,
318
318
  *,
319
- region_type: bpy._typing.rna_enums.RegionTypeItems | None = "WINDOW",
319
+ region_type: bpy.stub_internal.rna_enums.RegionTypeItems | None = "WINDOW",
320
320
  ):
321
321
  """Hide or unhide the region
322
322
 
323
323
  :type execution_context: int | str | None
324
324
  :type undo: bool | None
325
325
  :param region_type: Region Type, Type of the region to toggle
326
- :type region_type: bpy._typing.rna_enums.RegionTypeItems | None
326
+ :type region_type: bpy.stub_internal.rna_enums.RegionTypeItems | None
327
327
  """
328
328
 
329
329
  def repeat_history(
@@ -602,14 +602,14 @@ def space_type_set_or_cycle(
602
602
  undo: bool | None = None,
603
603
  /,
604
604
  *,
605
- space_type: bpy._typing.rna_enums.SpaceTypeItems | None = "EMPTY",
605
+ space_type: bpy.stub_internal.rna_enums.SpaceTypeItems | None = "EMPTY",
606
606
  ):
607
607
  """Set the space type or cycle subtype
608
608
 
609
609
  :type execution_context: int | str | None
610
610
  :type undo: bool | None
611
611
  :param space_type: Type
612
- :type space_type: bpy._typing.rna_enums.SpaceTypeItems | None
612
+ :type space_type: bpy.stub_internal.rna_enums.SpaceTypeItems | None
613
613
  """
614
614
 
615
615
  def spacedata_cleanup(
@@ -626,14 +626,14 @@ def userpref_show(
626
626
  undo: bool | None = None,
627
627
  /,
628
628
  *,
629
- section: bpy._typing.rna_enums.PreferenceSectionItems | None = "INTERFACE",
629
+ section: bpy.stub_internal.rna_enums.PreferenceSectionItems | None = "INTERFACE",
630
630
  ):
631
631
  """Edit user preferences and system settings
632
632
 
633
633
  :type execution_context: int | str | None
634
634
  :type undo: bool | None
635
635
  :param section: Section to activate in the Preferences
636
- :type section: bpy._typing.rna_enums.PreferenceSectionItems | None
636
+ :type section: bpy.stub_internal.rna_enums.PreferenceSectionItems | None
637
637
  """
638
638
 
639
639
  def workspace_cycle(
@@ -2,20 +2,11 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
6
5
  import bpy.ops.transform
6
+ import bpy.stub_internal.rna_enums
7
7
  import bpy.types
8
8
  import mathutils
9
9
 
10
- def change_effect_input(
11
- execution_context: int | str | None = None, undo: bool | None = None
12
- ):
13
- """Undocumented, consider contributing.
14
-
15
- :type execution_context: int | str | None
16
- :type undo: bool | None
17
- """
18
-
19
10
  def change_effect_type(
20
11
  execution_context: int | str | None = None,
21
12
  undo: bool | None = None,
@@ -42,62 +33,62 @@ def change_effect_type(
42
33
  ]
43
34
  | None = "CROSS",
44
35
  ):
45
- """Undocumented, consider contributing.
36
+ """Replace effect strip with another that takes the same number of inputs
46
37
 
47
38
  :type execution_context: int | str | None
48
39
  :type undo: bool | None
49
- :param type: Type, Sequencer effect type
40
+ :param type: Type, Strip effect type
50
41
 
51
42
  CROSS
52
- Crossfade -- Crossfade effect strip type.
43
+ Crossfade -- Fade out of one video, fading into another.
53
44
 
54
45
  ADD
55
- Add -- Add effect strip type.
46
+ Add -- Add together color channels from two videos.
56
47
 
57
48
  SUBTRACT
58
- Subtract -- Subtract effect strip type.
49
+ Subtract -- Subtract one strip's color from another.
59
50
 
60
51
  ALPHA_OVER
61
- Alpha Over -- Alpha Over effect strip type.
52
+ Alpha Over -- Blend alpha on top of another video.
62
53
 
63
54
  ALPHA_UNDER
64
- Alpha Under -- Alpha Under effect strip type.
55
+ Alpha Under -- Blend alpha below another video.
65
56
 
66
57
  GAMMA_CROSS
67
- Gamma Cross -- Gamma Cross effect strip type.
58
+ Gamma Crossfade -- Crossfade with color correction.
68
59
 
69
60
  MULTIPLY
70
- Multiply -- Multiply effect strip type.
61
+ Multiply -- Multiply color channels from two videos.
71
62
 
72
63
  WIPE
73
- Wipe -- Wipe effect strip type.
64
+ Wipe -- Sweep a transition line across the frame.
74
65
 
75
66
  GLOW
76
- Glow -- Glow effect strip type.
67
+ Glow -- Add blur and brightness to light areas.
77
68
 
78
69
  TRANSFORM
79
- Transform -- Transform effect strip type.
70
+ Transform -- Apply scale, rotation, or translation.
80
71
 
81
72
  COLOR
82
- Color -- Color effect strip type.
73
+ Color -- Add a simple color strip.
83
74
 
84
75
  SPEED
85
- Speed -- Color effect strip type.
76
+ Speed -- Timewarp video strips, modifying playback speed.
86
77
 
87
78
  MULTICAM
88
- Multicam Selector.
79
+ Multicam Selector -- Control active camera angles.
89
80
 
90
81
  ADJUSTMENT
91
- Adjustment Layer.
82
+ Adjustment Layer -- Apply nondestructive effects.
92
83
 
93
84
  GAUSSIAN_BLUR
94
- Gaussian Blur.
85
+ Gaussian Blur -- Soften details along axes.
95
86
 
96
87
  TEXT
97
- Text.
88
+ Text -- Add a simple text strip.
98
89
 
99
90
  COLORMIX
100
- Color Mix.
91
+ Color Mix -- Combine two strips using blend modes.
101
92
  :type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
102
93
  """
103
94
 
@@ -358,6 +349,7 @@ def effect_strip_add(
358
349
  replace_sel: bool | None = True,
359
350
  overlap: bool | None = False,
360
351
  overlap_shuffle_override: bool | None = False,
352
+ skip_locked_or_muted_channels: bool | None = True,
361
353
  color: collections.abc.Sequence[float] | mathutils.Color | None = (0.0, 0.0, 0.0),
362
354
  ):
363
355
  """Add an effect to the sequencer, most are applied on top of existing strips
@@ -367,55 +359,55 @@ def effect_strip_add(
367
359
  :param type: Type, Sequencer effect type
368
360
 
369
361
  CROSS
370
- Crossfade -- Crossfade effect strip type.
362
+ Crossfade -- Fade out of one video, fading into another.
371
363
 
372
364
  ADD
373
- Add -- Add effect strip type.
365
+ Add -- Add together color channels from two videos.
374
366
 
375
367
  SUBTRACT
376
- Subtract -- Subtract effect strip type.
368
+ Subtract -- Subtract one strip's color from another.
377
369
 
378
370
  ALPHA_OVER
379
- Alpha Over -- Alpha Over effect strip type.
371
+ Alpha Over -- Blend alpha on top of another video.
380
372
 
381
373
  ALPHA_UNDER
382
- Alpha Under -- Alpha Under effect strip type.
374
+ Alpha Under -- Blend alpha below another video.
383
375
 
384
376
  GAMMA_CROSS
385
- Gamma Cross -- Gamma Cross effect strip type.
377
+ Gamma Crossfade -- Crossfade with color correction.
386
378
 
387
379
  MULTIPLY
388
- Multiply -- Multiply effect strip type.
380
+ Multiply -- Multiply color channels from two videos.
389
381
 
390
382
  WIPE
391
- Wipe -- Wipe effect strip type.
383
+ Wipe -- Sweep a transition line across the frame.
392
384
 
393
385
  GLOW
394
- Glow -- Glow effect strip type.
386
+ Glow -- Add blur and brightness to light areas.
395
387
 
396
388
  TRANSFORM
397
- Transform -- Transform effect strip type.
389
+ Transform -- Apply scale, rotation, or translation.
398
390
 
399
391
  COLOR
400
- Color -- Color effect strip type.
392
+ Color -- Add a simple color strip.
401
393
 
402
394
  SPEED
403
- Speed -- Color effect strip type.
395
+ Speed -- Timewarp video strips, modifying playback speed.
404
396
 
405
397
  MULTICAM
406
- Multicam Selector.
398
+ Multicam Selector -- Control active camera angles.
407
399
 
408
400
  ADJUSTMENT
409
- Adjustment Layer.
401
+ Adjustment Layer -- Apply nondestructive effects.
410
402
 
411
403
  GAUSSIAN_BLUR
412
- Gaussian Blur.
404
+ Gaussian Blur -- Soften details along axes.
413
405
 
414
406
  TEXT
415
- Text.
407
+ Text -- Add a simple text strip.
416
408
 
417
409
  COLORMIX
418
- Color Mix.
410
+ Color Mix -- Combine two strips using blend modes.
419
411
  :type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
420
412
  :param frame_start: Start Frame, Start frame of the sequence strip
421
413
  :type frame_start: int | None
@@ -429,6 +421,8 @@ def effect_strip_add(
429
421
  :type overlap: bool | None
430
422
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
431
423
  :type overlap_shuffle_override: bool | None
424
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
425
+ :type skip_locked_or_muted_channels: bool | None
432
426
  :param color: Color, Initialize the strip with this color
433
427
  :type color: collections.abc.Sequence[float] | mathutils.Color | None
434
428
  """
@@ -676,6 +670,7 @@ def image_strip_add(
676
670
  replace_sel: bool | None = True,
677
671
  overlap: bool | None = False,
678
672
  overlap_shuffle_override: bool | None = False,
673
+ skip_locked_or_muted_channels: bool | None = True,
679
674
  fit_method: typing.Literal["FIT", "FILL", "STRETCH", "ORIGINAL"] | None = "FIT",
680
675
  set_view_transform: bool | None = True,
681
676
  use_placeholders: bool | None = False,
@@ -778,6 +773,8 @@ def image_strip_add(
778
773
  :type overlap: bool | None
779
774
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
780
775
  :type overlap_shuffle_override: bool | None
776
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
777
+ :type skip_locked_or_muted_channels: bool | None
781
778
  :param fit_method: Fit Method, Scale fit method
782
779
 
783
780
  FIT
@@ -830,6 +827,7 @@ def mask_strip_add(
830
827
  replace_sel: bool | None = True,
831
828
  overlap: bool | None = False,
832
829
  overlap_shuffle_override: bool | None = False,
830
+ skip_locked_or_muted_channels: bool | None = True,
833
831
  mask: str | None = "",
834
832
  ):
835
833
  """Add a mask strip to the sequencer
@@ -846,6 +844,8 @@ def mask_strip_add(
846
844
  :type overlap: bool | None
847
845
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
848
846
  :type overlap_shuffle_override: bool | None
847
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
848
+ :type skip_locked_or_muted_channels: bool | None
849
849
  :param mask: Mask
850
850
  :type mask: str | None
851
851
  """
@@ -920,6 +920,7 @@ def movie_strip_add(
920
920
  replace_sel: bool | None = True,
921
921
  overlap: bool | None = False,
922
922
  overlap_shuffle_override: bool | None = False,
923
+ skip_locked_or_muted_channels: bool | None = True,
923
924
  fit_method: typing.Literal["FIT", "FILL", "STRETCH", "ORIGINAL"] | None = "FIT",
924
925
  set_view_transform: bool | None = True,
925
926
  adjust_playback_rate: bool | None = True,
@@ -1024,6 +1025,8 @@ def movie_strip_add(
1024
1025
  :type overlap: bool | None
1025
1026
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1026
1027
  :type overlap_shuffle_override: bool | None
1028
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
1029
+ :type skip_locked_or_muted_channels: bool | None
1027
1030
  :param fit_method: Fit Method, Scale fit method
1028
1031
 
1029
1032
  FIT
@@ -1058,6 +1061,7 @@ def movieclip_strip_add(
1058
1061
  replace_sel: bool | None = True,
1059
1062
  overlap: bool | None = False,
1060
1063
  overlap_shuffle_override: bool | None = False,
1064
+ skip_locked_or_muted_channels: bool | None = True,
1061
1065
  clip: str | None = "",
1062
1066
  ):
1063
1067
  """Add a movieclip strip to the sequencer
@@ -1074,6 +1078,8 @@ def movieclip_strip_add(
1074
1078
  :type overlap: bool | None
1075
1079
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1076
1080
  :type overlap_shuffle_override: bool | None
1081
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
1082
+ :type skip_locked_or_muted_channels: bool | None
1077
1083
  :param clip: Clip
1078
1084
  :type clip: str | None
1079
1085
  """
@@ -1345,6 +1351,7 @@ def scene_strip_add(
1345
1351
  replace_sel: bool | None = True,
1346
1352
  overlap: bool | None = False,
1347
1353
  overlap_shuffle_override: bool | None = False,
1354
+ skip_locked_or_muted_channels: bool | None = True,
1348
1355
  scene: str | None = "",
1349
1356
  ):
1350
1357
  """Add a strip to the sequencer using a Blender scene as a source
@@ -1361,6 +1368,8 @@ def scene_strip_add(
1361
1368
  :type overlap: bool | None
1362
1369
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1363
1370
  :type overlap_shuffle_override: bool | None
1371
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
1372
+ :type skip_locked_or_muted_channels: bool | None
1364
1373
  :param scene: Scene
1365
1374
  :type scene: str | None
1366
1375
  """
@@ -1375,6 +1384,7 @@ def scene_strip_add_new(
1375
1384
  replace_sel: bool | None = True,
1376
1385
  overlap: bool | None = False,
1377
1386
  overlap_shuffle_override: bool | None = False,
1387
+ skip_locked_or_muted_channels: bool | None = True,
1378
1388
  type: typing.Literal["NEW", "EMPTY", "LINK_COPY", "FULL_COPY"] | None = "NEW",
1379
1389
  ):
1380
1390
  """Create a new Strip and assign a new Scene as source
@@ -1391,6 +1401,8 @@ def scene_strip_add_new(
1391
1401
  :type overlap: bool | None
1392
1402
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1393
1403
  :type overlap_shuffle_override: bool | None
1404
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
1405
+ :type skip_locked_or_muted_channels: bool | None
1394
1406
  :param type: Type
1395
1407
 
1396
1408
  NEW
@@ -1793,6 +1805,7 @@ def sound_strip_add(
1793
1805
  replace_sel: bool | None = True,
1794
1806
  overlap: bool | None = False,
1795
1807
  overlap_shuffle_override: bool | None = False,
1808
+ skip_locked_or_muted_channels: bool | None = True,
1796
1809
  cache: bool | None = False,
1797
1810
  mono: bool | None = False,
1798
1811
  ):
@@ -1890,6 +1903,8 @@ def sound_strip_add(
1890
1903
  :type overlap: bool | None
1891
1904
  :param overlap_shuffle_override: Override Overlap Shuffle Behavior, Use the overlap_mode tool settings to determine how to shuffle overlapping strips
1892
1905
  :type overlap_shuffle_override: bool | None
1906
+ :param skip_locked_or_muted_channels: Skip Locked or Muted Channels, Add strips to muted or locked channels when adding movie strips
1907
+ :type skip_locked_or_muted_channels: bool | None
1893
1908
  :param cache: Cache, Cache the sound in memory
1894
1909
  :type cache: bool | None
1895
1910
  :param mono: Mono, Merge all the sound's channels into one
@@ -1947,14 +1962,14 @@ def strip_color_tag_set(
1947
1962
  undo: bool | None = None,
1948
1963
  /,
1949
1964
  *,
1950
- color: bpy._typing.rna_enums.StripColorItems | None = "NONE",
1965
+ color: bpy.stub_internal.rna_enums.StripColorItems | None = "NONE",
1951
1966
  ):
1952
1967
  """Set a color tag for the selected strips
1953
1968
 
1954
1969
  :type execution_context: int | str | None
1955
1970
  :type undo: bool | None
1956
1971
  :param color: Color Tag
1957
- :type color: bpy._typing.rna_enums.StripColorItems | None
1972
+ :type color: bpy.stub_internal.rna_enums.StripColorItems | None
1958
1973
  """
1959
1974
 
1960
1975
  def strip_jump(
@@ -2,7 +2,7 @@ import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
4
  import numpy.typing as npt
5
- import bpy._typing.rna_enums
5
+ import bpy.stub_internal.rna_enums
6
6
 
7
7
  def bake_animation(
8
8
  execution_context: int | str | None = None, undo: bool | None = None
@@ -468,7 +468,7 @@ def unpack(
468
468
  undo: bool | None = None,
469
469
  /,
470
470
  *,
471
- method: bpy._typing.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
471
+ method: bpy.stub_internal.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
472
472
  id: str = "",
473
473
  ):
474
474
  """Unpack the sound to the samples filename
@@ -476,7 +476,7 @@ def unpack(
476
476
  :type execution_context: int | str | None
477
477
  :type undo: bool | None
478
478
  :param method: Method, How to unpack
479
- :type method: bpy._typing.rna_enums.UnpackMethodItems | None
479
+ :type method: bpy.stub_internal.rna_enums.UnpackMethodItems | None
480
480
  :param id: Sound Name, Sound data-block name to unpack
481
481
  :type id: str
482
482
  """