fake-bpy-module 20250521__py3-none-any.whl → 20250602__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.
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- bl_ui/node_add_menu/__init__.pyi +3 -3
- bl_ui/node_add_menu_geometry/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +24 -0
- bl_ui/space_graph/__init__.pyi +24 -0
- bl_ui/space_image/__init__.pyi +35 -0
- bl_ui/space_nla/__init__.pyi +24 -0
- bl_ui/space_sequencer/__init__.pyi +48 -0
- bl_ui/space_spreadsheet/__init__.pyi +33 -19
- bl_ui/space_toolsystem_common/__init__.pyi +17 -0
- bpy/_typing/rna_enums/__init__.pyi +1 -1
- bpy/app/timers/__init__.pyi +0 -9
- bpy/ops/node/__init__.pyi +36 -0
- bpy/ops/screen/__init__.pyi +1 -1
- bpy/ops/sequencer/__init__.pyi +60 -45
- bpy/ops/wm/__init__.pyi +2 -2
- bpy/types/__init__.pyi +37943 -31866
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/RECORD +24 -24
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/WHEEL +1 -1
- gpu/__init__.pyi +35 -3
- gpu/shader/__init__.pyi +16 -0
- gpu/types/__init__.pyi +1 -1
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/top_level.txt +0 -0
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -7,15 +7,6 @@ import bpy.ops.transform
|
|
|
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
|
-
"""
|
|
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,
|
|
40
|
+
:param type: Type, Strip effect type
|
|
50
41
|
|
|
51
42
|
CROSS
|
|
52
|
-
Crossfade --
|
|
43
|
+
Crossfade -- Fade out of one video, fading into another.
|
|
53
44
|
|
|
54
45
|
ADD
|
|
55
|
-
Add -- Add
|
|
46
|
+
Add -- Add together color channels from two videos.
|
|
56
47
|
|
|
57
48
|
SUBTRACT
|
|
58
|
-
Subtract -- Subtract
|
|
49
|
+
Subtract -- Subtract one strip's color from another.
|
|
59
50
|
|
|
60
51
|
ALPHA_OVER
|
|
61
|
-
Alpha Over --
|
|
52
|
+
Alpha Over -- Blend alpha on top of another video.
|
|
62
53
|
|
|
63
54
|
ALPHA_UNDER
|
|
64
|
-
Alpha Under --
|
|
55
|
+
Alpha Under -- Blend alpha below another video.
|
|
65
56
|
|
|
66
57
|
GAMMA_CROSS
|
|
67
|
-
Gamma
|
|
58
|
+
Gamma Crossfade -- Crossfade with color correction.
|
|
68
59
|
|
|
69
60
|
MULTIPLY
|
|
70
|
-
Multiply -- Multiply
|
|
61
|
+
Multiply -- Multiply color channels from two videos.
|
|
71
62
|
|
|
72
63
|
WIPE
|
|
73
|
-
Wipe --
|
|
64
|
+
Wipe -- Sweep a transition line across the frame.
|
|
74
65
|
|
|
75
66
|
GLOW
|
|
76
|
-
Glow --
|
|
67
|
+
Glow -- Add blur and brightness to light areas.
|
|
77
68
|
|
|
78
69
|
TRANSFORM
|
|
79
|
-
Transform --
|
|
70
|
+
Transform -- Apply scale, rotation, or translation.
|
|
80
71
|
|
|
81
72
|
COLOR
|
|
82
|
-
Color --
|
|
73
|
+
Color -- Add a simple color strip.
|
|
83
74
|
|
|
84
75
|
SPEED
|
|
85
|
-
Speed --
|
|
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 --
|
|
362
|
+
Crossfade -- Fade out of one video, fading into another.
|
|
371
363
|
|
|
372
364
|
ADD
|
|
373
|
-
Add -- Add
|
|
365
|
+
Add -- Add together color channels from two videos.
|
|
374
366
|
|
|
375
367
|
SUBTRACT
|
|
376
|
-
Subtract -- Subtract
|
|
368
|
+
Subtract -- Subtract one strip's color from another.
|
|
377
369
|
|
|
378
370
|
ALPHA_OVER
|
|
379
|
-
Alpha Over --
|
|
371
|
+
Alpha Over -- Blend alpha on top of another video.
|
|
380
372
|
|
|
381
373
|
ALPHA_UNDER
|
|
382
|
-
Alpha Under --
|
|
374
|
+
Alpha Under -- Blend alpha below another video.
|
|
383
375
|
|
|
384
376
|
GAMMA_CROSS
|
|
385
|
-
Gamma
|
|
377
|
+
Gamma Crossfade -- Crossfade with color correction.
|
|
386
378
|
|
|
387
379
|
MULTIPLY
|
|
388
|
-
Multiply -- Multiply
|
|
380
|
+
Multiply -- Multiply color channels from two videos.
|
|
389
381
|
|
|
390
382
|
WIPE
|
|
391
|
-
Wipe --
|
|
383
|
+
Wipe -- Sweep a transition line across the frame.
|
|
392
384
|
|
|
393
385
|
GLOW
|
|
394
|
-
Glow --
|
|
386
|
+
Glow -- Add blur and brightness to light areas.
|
|
395
387
|
|
|
396
388
|
TRANSFORM
|
|
397
|
-
Transform --
|
|
389
|
+
Transform -- Apply scale, rotation, or translation.
|
|
398
390
|
|
|
399
391
|
COLOR
|
|
400
|
-
Color --
|
|
392
|
+
Color -- Add a simple color strip.
|
|
401
393
|
|
|
402
394
|
SPEED
|
|
403
|
-
Speed --
|
|
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
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -656,7 +656,7 @@ def collada_export(
|
|
|
656
656
|
limit_precision: bool | None = False,
|
|
657
657
|
keep_bind_info: bool | None = False,
|
|
658
658
|
):
|
|
659
|
-
"""Save a Collada file
|
|
659
|
+
"""Save a Collada file (Deprecated)
|
|
660
660
|
|
|
661
661
|
:type execution_context: int | str | None
|
|
662
662
|
:type undo: bool | None
|
|
@@ -897,7 +897,7 @@ def collada_import(
|
|
|
897
897
|
min_chain_length: int | None = 0,
|
|
898
898
|
keep_bind_info: bool | None = False,
|
|
899
899
|
):
|
|
900
|
-
"""Load a Collada file
|
|
900
|
+
"""Load a Collada file (Deprecated)
|
|
901
901
|
|
|
902
902
|
:type execution_context: int | str | None
|
|
903
903
|
:type undo: bool | None
|