fake-bpy-module 20250602__py3-none-any.whl → 20250604__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.
- bl_ui/properties_paint_common/__init__.pyi +1 -0
- bl_ui/space_dopesheet/__init__.pyi +2 -2
- bl_ui/space_graph/__init__.pyi +2 -4
- bl_ui/space_nla/__init__.pyi +2 -4
- bl_ui/space_node/__init__.pyi +28 -0
- bl_ui/space_sequencer/__init__.pyi +2 -1
- bl_ui/space_toolsystem_common/__init__.pyi +0 -17
- bl_ui/space_view3d_toolbar/__init__.pyi +41 -0
- bl_ui/utils/__init__.pyi +17 -0
- bpy/app/__init__.pyi +5 -5
- bpy/ops/action/__init__.pyi +14 -13
- bpy/ops/boid/__init__.pyi +3 -3
- bpy/ops/brush/__init__.pyi +4 -3
- bpy/ops/clip/__init__.pyi +3 -3
- bpy/ops/curve/__init__.pyi +5 -5
- bpy/ops/curves/__init__.pyi +9 -9
- bpy/ops/dpaint/__init__.pyi +3 -3
- bpy/ops/geometry/__init__.pyi +22 -19
- bpy/ops/graph/__init__.pyi +19 -17
- bpy/ops/grease_pencil/__init__.pyi +50 -9
- bpy/ops/image/__init__.pyi +12 -9
- bpy/ops/lattice/__init__.pyi +3 -3
- bpy/ops/mesh/__init__.pyi +45 -43
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +4 -3
- bpy/ops/object/__init__.pyi +76 -69
- bpy/ops/outliner/__init__.pyi +5 -5
- bpy/ops/paint/__init__.pyi +9 -7
- bpy/ops/pose/__init__.pyi +15 -13
- bpy/ops/rigidbody/__init__.pyi +9 -9
- bpy/ops/scene/__init__.pyi +12 -9
- bpy/ops/screen/__init__.pyi +7 -7
- bpy/ops/sequencer/__init__.pyi +3 -3
- bpy/ops/sound/__init__.pyi +3 -3
- bpy/ops/transform/__init__.pyi +89 -73
- bpy/ops/uv/__init__.pyi +3 -3
- bpy/ops/wm/__init__.pyi +33 -20
- bpy/props/__init__.pyi +61 -59
- bpy/{_typing → stub_internal}/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +1384 -966
- {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/RECORD +47 -47
- freestyle/utils/__init__.pyi +1 -1
- mathutils/__init__.pyi +4 -6
- /bpy/{_typing → stub_internal}/__init__.pyi +0 -0
- {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250602.dist-info → fake_bpy_module-20250604.dist-info}/top_level.txt +0 -0
bpy/ops/geometry/__init__.pyi
CHANGED
|
@@ -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.
|
|
5
|
+
import bpy.stub_internal.rna_enums
|
|
6
6
|
|
|
7
7
|
def attribute_add(
|
|
8
8
|
execution_context: int | str | None = None,
|
|
@@ -10,8 +10,8 @@ def attribute_add(
|
|
|
10
10
|
/,
|
|
11
11
|
*,
|
|
12
12
|
name: str = "",
|
|
13
|
-
domain: bpy.
|
|
14
|
-
data_type: bpy.
|
|
13
|
+
domain: bpy.stub_internal.rna_enums.AttributeDomainItems | None = "POINT",
|
|
14
|
+
data_type: bpy.stub_internal.rna_enums.AttributeTypeItems | None = "FLOAT",
|
|
15
15
|
):
|
|
16
16
|
"""Add attribute to geometry
|
|
17
17
|
|
|
@@ -20,9 +20,9 @@ def attribute_add(
|
|
|
20
20
|
:param name: Name, Name of new attribute
|
|
21
21
|
:type name: str
|
|
22
22
|
:param domain: Domain, Type of element that attribute is stored on
|
|
23
|
-
:type domain: bpy.
|
|
23
|
+
:type domain: bpy.stub_internal.rna_enums.AttributeDomainItems | None
|
|
24
24
|
:param data_type: Data Type, Type of data stored in attribute
|
|
25
|
-
:type data_type: bpy.
|
|
25
|
+
:type data_type: bpy.stub_internal.rna_enums.AttributeTypeItems | None
|
|
26
26
|
"""
|
|
27
27
|
|
|
28
28
|
def attribute_convert(
|
|
@@ -31,8 +31,8 @@ def attribute_convert(
|
|
|
31
31
|
/,
|
|
32
32
|
*,
|
|
33
33
|
mode: typing.Literal["GENERIC", "VERTEX_GROUP"] | None = "GENERIC",
|
|
34
|
-
domain: bpy.
|
|
35
|
-
data_type: bpy.
|
|
34
|
+
domain: bpy.stub_internal.rna_enums.AttributeDomainItems | None = "POINT",
|
|
35
|
+
data_type: bpy.stub_internal.rna_enums.AttributeTypeItems | None = "FLOAT",
|
|
36
36
|
):
|
|
37
37
|
"""Change how the attribute is stored
|
|
38
38
|
|
|
@@ -41,9 +41,9 @@ def attribute_convert(
|
|
|
41
41
|
:param mode: Mode
|
|
42
42
|
:type mode: typing.Literal['GENERIC','VERTEX_GROUP'] | None
|
|
43
43
|
:param domain: Domain, Which geometry element to move the attribute to
|
|
44
|
-
:type domain: bpy.
|
|
44
|
+
:type domain: bpy.stub_internal.rna_enums.AttributeDomainItems | None
|
|
45
45
|
:param data_type: Data Type
|
|
46
|
-
:type data_type: bpy.
|
|
46
|
+
:type data_type: bpy.stub_internal.rna_enums.AttributeTypeItems | None
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
49
|
def attribute_remove(
|
|
@@ -61,8 +61,9 @@ def color_attribute_add(
|
|
|
61
61
|
/,
|
|
62
62
|
*,
|
|
63
63
|
name: str = "",
|
|
64
|
-
domain: bpy.
|
|
65
|
-
data_type: bpy.
|
|
64
|
+
domain: bpy.stub_internal.rna_enums.ColorAttributeDomainItems | None = "POINT",
|
|
65
|
+
data_type: bpy.stub_internal.rna_enums.ColorAttributeTypeItems
|
|
66
|
+
| None = "FLOAT_COLOR",
|
|
66
67
|
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
|
|
67
68
|
):
|
|
68
69
|
"""Add color attribute to geometry
|
|
@@ -72,9 +73,9 @@ def color_attribute_add(
|
|
|
72
73
|
:param name: Name, Name of new color attribute
|
|
73
74
|
:type name: str
|
|
74
75
|
:param domain: Domain, Type of element that attribute is stored on
|
|
75
|
-
:type domain: bpy.
|
|
76
|
+
:type domain: bpy.stub_internal.rna_enums.ColorAttributeDomainItems | None
|
|
76
77
|
:param data_type: Data Type, Type of data stored in attribute
|
|
77
|
-
:type data_type: bpy.
|
|
78
|
+
:type data_type: bpy.stub_internal.rna_enums.ColorAttributeTypeItems | None
|
|
78
79
|
:param color: Color, Default fill color
|
|
79
80
|
:type color: collections.abc.Iterable[float] | None
|
|
80
81
|
"""
|
|
@@ -84,17 +85,18 @@ def color_attribute_convert(
|
|
|
84
85
|
undo: bool | None = None,
|
|
85
86
|
/,
|
|
86
87
|
*,
|
|
87
|
-
domain: bpy.
|
|
88
|
-
data_type: bpy.
|
|
88
|
+
domain: bpy.stub_internal.rna_enums.ColorAttributeDomainItems | None = "POINT",
|
|
89
|
+
data_type: bpy.stub_internal.rna_enums.ColorAttributeTypeItems
|
|
90
|
+
| None = "FLOAT_COLOR",
|
|
89
91
|
):
|
|
90
92
|
"""Change how the color attribute is stored
|
|
91
93
|
|
|
92
94
|
:type execution_context: int | str | None
|
|
93
95
|
:type undo: bool | None
|
|
94
96
|
:param domain: Domain, Type of element that attribute is stored on
|
|
95
|
-
:type domain: bpy.
|
|
97
|
+
:type domain: bpy.stub_internal.rna_enums.ColorAttributeDomainItems | None
|
|
96
98
|
:param data_type: Data Type, Type of data stored in attribute
|
|
97
|
-
:type data_type: bpy.
|
|
99
|
+
:type data_type: bpy.stub_internal.rna_enums.ColorAttributeTypeItems | None
|
|
98
100
|
"""
|
|
99
101
|
|
|
100
102
|
def color_attribute_duplicate(
|
|
@@ -135,7 +137,8 @@ def execute_node_group(
|
|
|
135
137
|
undo: bool | None = None,
|
|
136
138
|
/,
|
|
137
139
|
*,
|
|
138
|
-
asset_library_type: bpy.
|
|
140
|
+
asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems
|
|
141
|
+
| None = "LOCAL",
|
|
139
142
|
asset_library_identifier: str = "",
|
|
140
143
|
relative_asset_identifier: str = "",
|
|
141
144
|
name: str = "",
|
|
@@ -187,7 +190,7 @@ def execute_node_group(
|
|
|
187
190
|
:type execution_context: int | str | None
|
|
188
191
|
:type undo: bool | None
|
|
189
192
|
:param asset_library_type: Asset Library Type
|
|
190
|
-
:type asset_library_type: bpy.
|
|
193
|
+
:type asset_library_type: bpy.stub_internal.rna_enums.AssetLibraryTypeItems | None
|
|
191
194
|
:param asset_library_identifier: Asset Library Identifier
|
|
192
195
|
:type asset_library_identifier: str
|
|
193
196
|
:param relative_asset_identifier: Relative Asset Identifier
|
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -2,8 +2,8 @@ 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
|
|
|
9
9
|
def bake_keys(execution_context: int | str | None = None, undo: bool | None = None):
|
|
@@ -292,14 +292,14 @@ def duplicate(
|
|
|
292
292
|
undo: bool | None = None,
|
|
293
293
|
/,
|
|
294
294
|
*,
|
|
295
|
-
mode: bpy.
|
|
295
|
+
mode: bpy.stub_internal.rna_enums.TransformModeTypeItems | None = "TRANSLATION",
|
|
296
296
|
):
|
|
297
297
|
"""Make a copy of all selected keyframes
|
|
298
298
|
|
|
299
299
|
:type execution_context: int | str | None
|
|
300
300
|
:type undo: bool | None
|
|
301
301
|
:param mode: Mode
|
|
302
|
-
:type mode: bpy.
|
|
302
|
+
:type mode: bpy.stub_internal.rna_enums.TransformModeTypeItems | None
|
|
303
303
|
"""
|
|
304
304
|
|
|
305
305
|
def duplicate_move(
|
|
@@ -343,14 +343,14 @@ def easing_type(
|
|
|
343
343
|
undo: bool | None = None,
|
|
344
344
|
/,
|
|
345
345
|
*,
|
|
346
|
-
type: bpy.
|
|
346
|
+
type: bpy.stub_internal.rna_enums.BeztripleInterpolationEasingItems | None = "AUTO",
|
|
347
347
|
):
|
|
348
348
|
"""Set easing type for the F-Curve segments starting from the selected keyframes
|
|
349
349
|
|
|
350
350
|
:type execution_context: int | str | None
|
|
351
351
|
:type undo: bool | None
|
|
352
352
|
:param type: Type
|
|
353
|
-
:type type: bpy.
|
|
353
|
+
:type type: bpy.stub_internal.rna_enums.BeztripleInterpolationEasingItems | None
|
|
354
354
|
"""
|
|
355
355
|
|
|
356
356
|
def equalize_handles(
|
|
@@ -423,7 +423,7 @@ def fmodifier_add(
|
|
|
423
423
|
undo: bool | None = None,
|
|
424
424
|
/,
|
|
425
425
|
*,
|
|
426
|
-
type: bpy.
|
|
426
|
+
type: bpy.stub_internal.rna_enums.FmodifierTypeItems | None = "NULL",
|
|
427
427
|
only_active: bool | None = False,
|
|
428
428
|
):
|
|
429
429
|
"""Add F-Modifier to the active/selected F-Curves
|
|
@@ -431,7 +431,7 @@ def fmodifier_add(
|
|
|
431
431
|
:type execution_context: int | str | None
|
|
432
432
|
:type undo: bool | None
|
|
433
433
|
:param type: Type
|
|
434
|
-
:type type: bpy.
|
|
434
|
+
:type type: bpy.stub_internal.rna_enums.FmodifierTypeItems | None
|
|
435
435
|
:param only_active: Only Active, Only add F-Modifier to active F-Curve
|
|
436
436
|
:type only_active: bool | None
|
|
437
437
|
"""
|
|
@@ -514,14 +514,14 @@ def handle_type(
|
|
|
514
514
|
undo: bool | None = None,
|
|
515
515
|
/,
|
|
516
516
|
*,
|
|
517
|
-
type: bpy.
|
|
517
|
+
type: bpy.stub_internal.rna_enums.KeyframeHandleTypeItems | None = "FREE",
|
|
518
518
|
):
|
|
519
519
|
"""Set type of handle for selected keyframes
|
|
520
520
|
|
|
521
521
|
:type execution_context: int | str | None
|
|
522
522
|
:type undo: bool | None
|
|
523
523
|
:param type: Type
|
|
524
|
-
:type type: bpy.
|
|
524
|
+
:type type: bpy.stub_internal.rna_enums.KeyframeHandleTypeItems | None
|
|
525
525
|
"""
|
|
526
526
|
|
|
527
527
|
def hide(
|
|
@@ -544,14 +544,15 @@ def interpolation_type(
|
|
|
544
544
|
undo: bool | None = None,
|
|
545
545
|
/,
|
|
546
546
|
*,
|
|
547
|
-
type: bpy.
|
|
547
|
+
type: bpy.stub_internal.rna_enums.BeztripleInterpolationModeItems
|
|
548
|
+
| None = "CONSTANT",
|
|
548
549
|
):
|
|
549
550
|
"""Set interpolation mode for the F-Curve segments starting from the selected keyframes
|
|
550
551
|
|
|
551
552
|
:type execution_context: int | str | None
|
|
552
553
|
:type undo: bool | None
|
|
553
554
|
:param type: Type
|
|
554
|
-
:type type: bpy.
|
|
555
|
+
:type type: bpy.stub_internal.rna_enums.BeztripleInterpolationModeItems | None
|
|
555
556
|
"""
|
|
556
557
|
|
|
557
558
|
def keyframe_insert(
|
|
@@ -659,9 +660,10 @@ def paste(
|
|
|
659
660
|
undo: bool | None = None,
|
|
660
661
|
/,
|
|
661
662
|
*,
|
|
662
|
-
offset: bpy.
|
|
663
|
-
value_offset: bpy.
|
|
664
|
-
|
|
663
|
+
offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetItems | None = "START",
|
|
664
|
+
value_offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetValueItems
|
|
665
|
+
| None = "NONE",
|
|
666
|
+
merge: bpy.stub_internal.rna_enums.KeyframePasteMergeItems | None = "MIX",
|
|
665
667
|
flipped: bool | None = False,
|
|
666
668
|
):
|
|
667
669
|
"""Paste keyframes from the internal clipboard for the selected channels, starting on the current frame
|
|
@@ -669,11 +671,11 @@ def paste(
|
|
|
669
671
|
:type execution_context: int | str | None
|
|
670
672
|
:type undo: bool | None
|
|
671
673
|
:param offset: Frame Offset, Paste time offset of keys
|
|
672
|
-
:type offset: bpy.
|
|
674
|
+
:type offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetItems | None
|
|
673
675
|
:param value_offset: Value Offset, Paste keys with a value offset
|
|
674
|
-
:type value_offset: bpy.
|
|
676
|
+
:type value_offset: bpy.stub_internal.rna_enums.KeyframePasteOffsetValueItems | None
|
|
675
677
|
:param merge: Type, Method of merging pasted keys and existing
|
|
676
|
-
:type merge: bpy.
|
|
678
|
+
:type merge: bpy.stub_internal.rna_enums.KeyframePasteMergeItems | None
|
|
677
679
|
:param flipped: Flipped, Paste keyframes from mirrored bones if they exist
|
|
678
680
|
:type flipped: bool | None
|
|
679
681
|
"""
|
|
@@ -2,8 +2,8 @@ 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
|
|
|
9
9
|
def active_frame_delete(
|
|
@@ -459,7 +459,8 @@ def interpolate_sequence(
|
|
|
459
459
|
"ELASTIC",
|
|
460
460
|
]
|
|
461
461
|
| None = "LINEAR",
|
|
462
|
-
easing: bpy.
|
|
462
|
+
easing: bpy.stub_internal.rna_enums.BeztripleInterpolationEasingItems
|
|
463
|
+
| None = "EASE_IN",
|
|
463
464
|
back: float | None = 1.702,
|
|
464
465
|
amplitude: float | None = 0.15,
|
|
465
466
|
period: float | None = 0.15,
|
|
@@ -521,7 +522,7 @@ def interpolate_sequence(
|
|
|
521
522
|
Elastic -- Exponentially decaying sine wave, like an elastic band.
|
|
522
523
|
:type type: typing.Literal['LINEAR','CUSTOM','SINE','QUAD','CUBIC','QUART','QUINT','EXPO','CIRC','BACK','BOUNCE','ELASTIC'] | None
|
|
523
524
|
:param easing: Easing, Which ends of the segment between the preceding and following Grease Pencil frames easing interpolation is applied to
|
|
524
|
-
:type easing: bpy.
|
|
525
|
+
:type easing: bpy.stub_internal.rna_enums.BeztripleInterpolationEasingItems | None
|
|
525
526
|
:param back: Back, Amount of overshoot for 'back' easing
|
|
526
527
|
:type back: float | None
|
|
527
528
|
:param amplitude: Amplitude, Amount to boost elastic bounces for 'elastic' easing
|
|
@@ -930,6 +931,31 @@ def move_to_layer(
|
|
|
930
931
|
:type add_new_layer: bool | None
|
|
931
932
|
"""
|
|
932
933
|
|
|
934
|
+
def outline(
|
|
935
|
+
execution_context: int | str | None = None,
|
|
936
|
+
undo: bool | None = None,
|
|
937
|
+
/,
|
|
938
|
+
*,
|
|
939
|
+
type: typing.Literal["VIEW", "FRONT", "SIDE", "TOP", "CURSOR", "CAMERA"]
|
|
940
|
+
| None = "VIEW",
|
|
941
|
+
radius: float | None = 0.01,
|
|
942
|
+
offset_factor: float | None = -1.0,
|
|
943
|
+
corner_subdivisions: int | None = 2,
|
|
944
|
+
):
|
|
945
|
+
"""Convert selected strokes to perimeter
|
|
946
|
+
|
|
947
|
+
:type execution_context: int | str | None
|
|
948
|
+
:type undo: bool | None
|
|
949
|
+
:param type: Projection Mode
|
|
950
|
+
:type type: typing.Literal['VIEW','FRONT','SIDE','TOP','CURSOR','CAMERA'] | None
|
|
951
|
+
:param radius: Radius
|
|
952
|
+
:type radius: float | None
|
|
953
|
+
:param offset_factor: Offset Factor
|
|
954
|
+
:type offset_factor: float | None
|
|
955
|
+
:param corner_subdivisions: Corner Subdivisions
|
|
956
|
+
:type corner_subdivisions: int | None
|
|
957
|
+
"""
|
|
958
|
+
|
|
933
959
|
def paintmode_toggle(
|
|
934
960
|
execution_context: int | str | None = None,
|
|
935
961
|
undo: bool | None = None,
|
|
@@ -1095,6 +1121,21 @@ def relative_layer_mask_add(
|
|
|
1095
1121
|
:type mode: typing.Literal['ABOVE','BELOW'] | None
|
|
1096
1122
|
"""
|
|
1097
1123
|
|
|
1124
|
+
def remove_fill_guides(
|
|
1125
|
+
execution_context: int | str | None = None,
|
|
1126
|
+
undo: bool | None = None,
|
|
1127
|
+
/,
|
|
1128
|
+
*,
|
|
1129
|
+
mode: typing.Literal["ACTIVE_FRAME", "ALL_FRAMES"] | None = "ALL_FRAMES",
|
|
1130
|
+
):
|
|
1131
|
+
"""Remove all the strokes that were created from the fill tool as guides
|
|
1132
|
+
|
|
1133
|
+
:type execution_context: int | str | None
|
|
1134
|
+
:type undo: bool | None
|
|
1135
|
+
:param mode: Mode
|
|
1136
|
+
:type mode: typing.Literal['ACTIVE_FRAME','ALL_FRAMES'] | None
|
|
1137
|
+
"""
|
|
1138
|
+
|
|
1098
1139
|
def reorder(
|
|
1099
1140
|
execution_context: int | str | None = None,
|
|
1100
1141
|
undo: bool | None = None,
|
|
@@ -1386,7 +1427,7 @@ def set_curve_type(
|
|
|
1386
1427
|
undo: bool | None = None,
|
|
1387
1428
|
/,
|
|
1388
1429
|
*,
|
|
1389
|
-
type: bpy.
|
|
1430
|
+
type: bpy.stub_internal.rna_enums.CurvesTypeItems | None = "POLY",
|
|
1390
1431
|
use_handles: bool | None = False,
|
|
1391
1432
|
):
|
|
1392
1433
|
"""Set type of selected curves
|
|
@@ -1394,7 +1435,7 @@ def set_curve_type(
|
|
|
1394
1435
|
:type execution_context: int | str | None
|
|
1395
1436
|
:type undo: bool | None
|
|
1396
1437
|
:param type: Type, Curve type
|
|
1397
|
-
:type type: bpy.
|
|
1438
|
+
:type type: bpy.stub_internal.rna_enums.CurvesTypeItems | None
|
|
1398
1439
|
:param use_handles: Handles, Take handle information into account in the conversion
|
|
1399
1440
|
:type use_handles: bool | None
|
|
1400
1441
|
"""
|
|
@@ -1404,14 +1445,14 @@ def set_handle_type(
|
|
|
1404
1445
|
undo: bool | None = None,
|
|
1405
1446
|
/,
|
|
1406
1447
|
*,
|
|
1407
|
-
type: bpy.
|
|
1448
|
+
type: bpy.stub_internal.rna_enums.CurvesHandleTypeItems | None = "AUTO",
|
|
1408
1449
|
):
|
|
1409
1450
|
"""Set the handle type for bezier curves
|
|
1410
1451
|
|
|
1411
1452
|
:type execution_context: int | str | None
|
|
1412
1453
|
:type undo: bool | None
|
|
1413
1454
|
:param type: Type
|
|
1414
|
-
:type type: bpy.
|
|
1455
|
+
:type type: bpy.stub_internal.rna_enums.CurvesHandleTypeItems | None
|
|
1415
1456
|
"""
|
|
1416
1457
|
|
|
1417
1458
|
def set_material(
|
|
@@ -1434,14 +1475,14 @@ def set_selection_mode(
|
|
|
1434
1475
|
undo: bool | None = None,
|
|
1435
1476
|
/,
|
|
1436
1477
|
*,
|
|
1437
|
-
mode: bpy.
|
|
1478
|
+
mode: bpy.stub_internal.rna_enums.GreasePencilSelectmodeItems | None = "POINT",
|
|
1438
1479
|
):
|
|
1439
1480
|
"""Change the selection mode for Grease Pencil strokes
|
|
1440
1481
|
|
|
1441
1482
|
:type execution_context: int | str | None
|
|
1442
1483
|
:type undo: bool | None
|
|
1443
1484
|
:param mode: Mode
|
|
1444
|
-
:type mode: bpy.
|
|
1485
|
+
:type mode: bpy.stub_internal.rna_enums.GreasePencilSelectmodeItems | None
|
|
1445
1486
|
"""
|
|
1446
1487
|
|
|
1447
1488
|
def set_start_point(
|
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -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.
|
|
5
|
+
import bpy.stub_internal.rna_enums
|
|
6
6
|
import bpy.types
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
@@ -660,7 +660,8 @@ def new(
|
|
|
660
660
|
height: int | None = 1024,
|
|
661
661
|
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
|
|
662
662
|
alpha: bool | None = True,
|
|
663
|
-
generated_type: bpy.
|
|
663
|
+
generated_type: bpy.stub_internal.rna_enums.ImageGeneratedTypeItems
|
|
664
|
+
| None = "BLANK",
|
|
664
665
|
float: bool | None = False,
|
|
665
666
|
use_stereo_3d: bool | None = False,
|
|
666
667
|
tiled: bool | None = False,
|
|
@@ -680,7 +681,7 @@ def new(
|
|
|
680
681
|
:param alpha: Alpha, Create an image with an alpha channel
|
|
681
682
|
:type alpha: bool | None
|
|
682
683
|
:param generated_type: Generated Type, Fill the image with a grid for UV map testing
|
|
683
|
-
:type generated_type: bpy.
|
|
684
|
+
:type generated_type: bpy.stub_internal.rna_enums.ImageGeneratedTypeItems | None
|
|
684
685
|
:param float: 32-bit Float, Create image with 32-bit floating-point bit depth
|
|
685
686
|
:type float: bool | None
|
|
686
687
|
:param use_stereo_3d: Stereo 3D, Create an image with left and right views
|
|
@@ -1247,7 +1248,8 @@ def tile_add(
|
|
|
1247
1248
|
label: str = "",
|
|
1248
1249
|
fill: bool | None = True,
|
|
1249
1250
|
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
|
|
1250
|
-
generated_type: bpy.
|
|
1251
|
+
generated_type: bpy.stub_internal.rna_enums.ImageGeneratedTypeItems
|
|
1252
|
+
| None = "BLANK",
|
|
1251
1253
|
width: int | None = 1024,
|
|
1252
1254
|
height: int | None = 1024,
|
|
1253
1255
|
float: bool | None = False,
|
|
@@ -1268,7 +1270,7 @@ def tile_add(
|
|
|
1268
1270
|
:param color: Color, Default fill color
|
|
1269
1271
|
:type color: collections.abc.Iterable[float] | None
|
|
1270
1272
|
:param generated_type: Generated Type, Fill the image with a grid for UV map testing
|
|
1271
|
-
:type generated_type: bpy.
|
|
1273
|
+
:type generated_type: bpy.stub_internal.rna_enums.ImageGeneratedTypeItems | None
|
|
1272
1274
|
:param width: Width, Image width
|
|
1273
1275
|
:type width: int | None
|
|
1274
1276
|
:param height: Height, Image height
|
|
@@ -1285,7 +1287,8 @@ def tile_fill(
|
|
|
1285
1287
|
/,
|
|
1286
1288
|
*,
|
|
1287
1289
|
color: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0, 1.0),
|
|
1288
|
-
generated_type: bpy.
|
|
1290
|
+
generated_type: bpy.stub_internal.rna_enums.ImageGeneratedTypeItems
|
|
1291
|
+
| None = "BLANK",
|
|
1289
1292
|
width: int | None = 1024,
|
|
1290
1293
|
height: int | None = 1024,
|
|
1291
1294
|
float: bool | None = False,
|
|
@@ -1298,7 +1301,7 @@ def tile_fill(
|
|
|
1298
1301
|
:param color: Color, Default fill color
|
|
1299
1302
|
:type color: collections.abc.Iterable[float] | None
|
|
1300
1303
|
:param generated_type: Generated Type, Fill the image with a grid for UV map testing
|
|
1301
|
-
:type generated_type: bpy.
|
|
1304
|
+
:type generated_type: bpy.stub_internal.rna_enums.ImageGeneratedTypeItems | None
|
|
1302
1305
|
:param width: Width, Image width
|
|
1303
1306
|
:type width: int | None
|
|
1304
1307
|
:param height: Height, Image height
|
|
@@ -1321,7 +1324,7 @@ def unpack(
|
|
|
1321
1324
|
undo: bool | None = None,
|
|
1322
1325
|
/,
|
|
1323
1326
|
*,
|
|
1324
|
-
method: bpy.
|
|
1327
|
+
method: bpy.stub_internal.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
|
|
1325
1328
|
id: str = "",
|
|
1326
1329
|
):
|
|
1327
1330
|
"""Save an image packed in the .blend file to disk
|
|
@@ -1329,7 +1332,7 @@ def unpack(
|
|
|
1329
1332
|
:type execution_context: int | str | None
|
|
1330
1333
|
:type undo: bool | None
|
|
1331
1334
|
:param method: Method, How to unpack
|
|
1332
|
-
:type method: bpy.
|
|
1335
|
+
:type method: bpy.stub_internal.rna_enums.UnpackMethodItems | None
|
|
1333
1336
|
:param id: Image Name, Image data-block name to unpack
|
|
1334
1337
|
:type id: str
|
|
1335
1338
|
"""
|
bpy/ops/lattice/__init__.pyi
CHANGED
|
@@ -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.
|
|
5
|
+
import bpy.stub_internal.rna_enums
|
|
6
6
|
|
|
7
7
|
def flip(
|
|
8
8
|
execution_context: int | str | None = None,
|
|
@@ -65,7 +65,7 @@ def select_mirror(
|
|
|
65
65
|
undo: bool | None = None,
|
|
66
66
|
/,
|
|
67
67
|
*,
|
|
68
|
-
axis: set[bpy.
|
|
68
|
+
axis: set[bpy.stub_internal.rna_enums.AxisFlagXyzItems] | None = {"X"},
|
|
69
69
|
extend: bool | None = False,
|
|
70
70
|
):
|
|
71
71
|
"""Select mirrored lattice points
|
|
@@ -73,7 +73,7 @@ def select_mirror(
|
|
|
73
73
|
:type execution_context: int | str | None
|
|
74
74
|
:type undo: bool | None
|
|
75
75
|
:param axis: Axis
|
|
76
|
-
:type axis: set[bpy.
|
|
76
|
+
:type axis: set[bpy.stub_internal.rna_enums.AxisFlagXyzItems] | None
|
|
77
77
|
:param extend: Extend, Extend the selection
|
|
78
78
|
:type extend: bool | None
|
|
79
79
|
"""
|