fake-bpy-module 20250904__py3-none-any.whl → 20250906__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.
- aud/__init__.pyi +11 -11
- bl_ui/properties_paint_common/__init__.pyi +0 -9
- bl_ui/properties_render/__init__.pyi +31 -0
- bl_ui/space_sequencer/__init__.pyi +1 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +2 -0
- bl_ui/space_userpref/__init__.pyi +36 -0
- bl_ui/space_view3d/__init__.pyi +0 -9
- bl_ui/space_view3d_toolbar/__init__.pyi +11 -609
- bmesh/types/__init__.pyi +9 -9
- bpy/ops/armature/__init__.pyi +3 -0
- bpy/ops/poselib/__init__.pyi +0 -3
- bpy/ops/sequencer/__init__.pyi +75 -0
- bpy/ops/wm/__init__.pyi +18 -0
- bpy/types/__init__.pyi +698 -369
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/RECORD +21 -21
- freestyle/types/__init__.pyi +2 -2
- idprop/types/__init__.pyi +1 -1
- mathutils/__init__.pyi +28 -0
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250904.dist-info → fake_bpy_module-20250906.dist-info}/top_level.txt +0 -0
bmesh/types/__init__.pyi
CHANGED
|
@@ -105,7 +105,7 @@ class BMEdge:
|
|
|
105
105
|
"""
|
|
106
106
|
|
|
107
107
|
is_valid: bool
|
|
108
|
-
""" True when this element is valid (
|
|
108
|
+
""" True when this element is valid (hasn't been removed).
|
|
109
109
|
|
|
110
110
|
:type: bool
|
|
111
111
|
"""
|
|
@@ -451,7 +451,7 @@ class BMFace:
|
|
|
451
451
|
"""
|
|
452
452
|
|
|
453
453
|
is_valid: bool
|
|
454
|
-
""" True when this element is valid (
|
|
454
|
+
""" True when this element is valid (hasn't been removed).
|
|
455
455
|
|
|
456
456
|
:type: bool
|
|
457
457
|
"""
|
|
@@ -463,7 +463,7 @@ class BMFace:
|
|
|
463
463
|
"""
|
|
464
464
|
|
|
465
465
|
material_index: int
|
|
466
|
-
""" The
|
|
466
|
+
""" The face's material index.
|
|
467
467
|
|
|
468
468
|
:type: int
|
|
469
469
|
"""
|
|
@@ -1061,7 +1061,7 @@ class BMLoop:
|
|
|
1061
1061
|
"""This is normally accessed from `BMFace.loops` where each face loop represents a corner of the face."""
|
|
1062
1062
|
|
|
1063
1063
|
edge: BMEdge
|
|
1064
|
-
""" The
|
|
1064
|
+
""" The loop's edge (between this loop and the next), (read-only).
|
|
1065
1065
|
|
|
1066
1066
|
:type: BMEdge
|
|
1067
1067
|
"""
|
|
@@ -1085,7 +1085,7 @@ class BMLoop:
|
|
|
1085
1085
|
"""
|
|
1086
1086
|
|
|
1087
1087
|
is_valid: bool
|
|
1088
|
-
""" True when this element is valid (
|
|
1088
|
+
""" True when this element is valid (hasn't been removed).
|
|
1089
1089
|
|
|
1090
1090
|
:type: bool
|
|
1091
1091
|
"""
|
|
@@ -1127,7 +1127,7 @@ class BMLoop:
|
|
|
1127
1127
|
"""
|
|
1128
1128
|
|
|
1129
1129
|
vert: BMVert
|
|
1130
|
-
""" The
|
|
1130
|
+
""" The loop's vertex (read-only).
|
|
1131
1131
|
|
|
1132
1132
|
:type: BMVert
|
|
1133
1133
|
"""
|
|
@@ -1305,7 +1305,7 @@ class BMVert:
|
|
|
1305
1305
|
"""
|
|
1306
1306
|
|
|
1307
1307
|
is_valid: bool
|
|
1308
|
-
""" True when this element is valid (
|
|
1308
|
+
""" True when this element is valid (hasn't been removed).
|
|
1309
1309
|
|
|
1310
1310
|
:type: bool
|
|
1311
1311
|
"""
|
|
@@ -1549,7 +1549,7 @@ class BMesh:
|
|
|
1549
1549
|
"""
|
|
1550
1550
|
|
|
1551
1551
|
is_valid: bool
|
|
1552
|
-
""" True when this element is valid (
|
|
1552
|
+
""" True when this element is valid (hasn't been removed).
|
|
1553
1553
|
|
|
1554
1554
|
:type: bool
|
|
1555
1555
|
"""
|
|
@@ -1573,7 +1573,7 @@ class BMesh:
|
|
|
1573
1573
|
"""
|
|
1574
1574
|
|
|
1575
1575
|
select_mode: set
|
|
1576
|
-
""" The selection mode, values can be {VERT, EDGE, FACE}, cannot be assigned an empty set.
|
|
1576
|
+
""" The selection mode, values can be {'VERT', 'EDGE', 'FACE'}, cannot be assigned an empty set.
|
|
1577
1577
|
|
|
1578
1578
|
:type: set
|
|
1579
1579
|
"""
|
bpy/ops/armature/__init__.pyi
CHANGED
|
@@ -737,6 +737,7 @@ def symmetrize(
|
|
|
737
737
|
/,
|
|
738
738
|
*,
|
|
739
739
|
direction: typing.Literal["NEGATIVE_X", "POSITIVE_X"] | None = "NEGATIVE_X",
|
|
740
|
+
copy_bone_colors: bool | None = False,
|
|
740
741
|
) -> None:
|
|
741
742
|
"""Enforce symmetry, make copies of the selection or use existing
|
|
742
743
|
|
|
@@ -744,4 +745,6 @@ def symmetrize(
|
|
|
744
745
|
:type undo: bool | None
|
|
745
746
|
:param direction: Direction, Which sides to copy from and to (when both are selected)
|
|
746
747
|
:type direction: typing.Literal['NEGATIVE_X','POSITIVE_X'] | None
|
|
748
|
+
:param copy_bone_colors: Bone Colors, Copy colors to existing bones
|
|
749
|
+
:type copy_bone_colors: bool | None
|
|
747
750
|
"""
|
bpy/ops/poselib/__init__.pyi
CHANGED
|
@@ -142,7 +142,6 @@ def create_pose_asset(
|
|
|
142
142
|
pose_name: str = "",
|
|
143
143
|
asset_library_reference: str | None = "",
|
|
144
144
|
catalog_path: str = "",
|
|
145
|
-
activate_new_action: bool | None = False,
|
|
146
145
|
) -> None:
|
|
147
146
|
"""Create a new asset from the selected bones in the scene
|
|
148
147
|
|
|
@@ -154,8 +153,6 @@ def create_pose_asset(
|
|
|
154
153
|
:type asset_library_reference: str | None
|
|
155
154
|
:param catalog_path: Catalog, Catalog to use for the new asset
|
|
156
155
|
:type catalog_path: str
|
|
157
|
-
:param activate_new_action: Activate New Action, This property is deprecated and will be removed in the future
|
|
158
|
-
:type activate_new_action: bool | None
|
|
159
156
|
"""
|
|
160
157
|
|
|
161
158
|
def paste_asset(
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1199,6 +1199,8 @@ def paste(
|
|
|
1199
1199
|
/,
|
|
1200
1200
|
*,
|
|
1201
1201
|
keep_offset: bool | None = False,
|
|
1202
|
+
x: int | None = 0,
|
|
1203
|
+
y: int | None = 0,
|
|
1202
1204
|
) -> None:
|
|
1203
1205
|
"""Paste strips from the internal clipboard
|
|
1204
1206
|
|
|
@@ -1206,6 +1208,10 @@ def paste(
|
|
|
1206
1208
|
:type undo: bool | None
|
|
1207
1209
|
:param keep_offset: Keep Offset, Keep strip offset relative to the current frame when pasting
|
|
1208
1210
|
:type keep_offset: bool | None
|
|
1211
|
+
:param x: X
|
|
1212
|
+
:type x: int | None
|
|
1213
|
+
:param y: Y
|
|
1214
|
+
:type y: int | None
|
|
1209
1215
|
"""
|
|
1210
1216
|
|
|
1211
1217
|
def preview_duplicate_move(
|
|
@@ -1808,6 +1814,42 @@ def select_handles(
|
|
|
1808
1814
|
:type side: typing.Literal['LEFT','RIGHT','BOTH','LEFT_NEIGHBOR','RIGHT_NEIGHBOR','BOTH_NEIGHBORS'] | None
|
|
1809
1815
|
"""
|
|
1810
1816
|
|
|
1817
|
+
def select_lasso(
|
|
1818
|
+
execution_context: int | str | None = None,
|
|
1819
|
+
undo: bool | None = None,
|
|
1820
|
+
/,
|
|
1821
|
+
*,
|
|
1822
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1823
|
+
use_smooth_stroke: bool | None = False,
|
|
1824
|
+
smooth_stroke_factor: float | None = 0.75,
|
|
1825
|
+
smooth_stroke_radius: int | None = 35,
|
|
1826
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1827
|
+
) -> None:
|
|
1828
|
+
"""Select strips using lasso selection
|
|
1829
|
+
|
|
1830
|
+
:type execution_context: int | str | None
|
|
1831
|
+
:type undo: bool | None
|
|
1832
|
+
:param path: Path
|
|
1833
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1834
|
+
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
1835
|
+
:type use_smooth_stroke: bool | None
|
|
1836
|
+
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
1837
|
+
:type smooth_stroke_factor: float | None
|
|
1838
|
+
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
1839
|
+
:type smooth_stroke_radius: int | None
|
|
1840
|
+
:param mode: Mode
|
|
1841
|
+
|
|
1842
|
+
SET
|
|
1843
|
+
Set -- Set a new selection.
|
|
1844
|
+
|
|
1845
|
+
ADD
|
|
1846
|
+
Extend -- Extend existing selection.
|
|
1847
|
+
|
|
1848
|
+
SUB
|
|
1849
|
+
Subtract -- Subtract existing selection.
|
|
1850
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1851
|
+
"""
|
|
1852
|
+
|
|
1811
1853
|
def select_less(
|
|
1812
1854
|
execution_context: int | str | None = None,
|
|
1813
1855
|
undo: bool | None = None,
|
|
@@ -2271,6 +2313,24 @@ def strip_modifier_move(
|
|
|
2271
2313
|
:type direction: typing.Literal['UP','DOWN'] | None
|
|
2272
2314
|
"""
|
|
2273
2315
|
|
|
2316
|
+
def strip_modifier_move_to_index(
|
|
2317
|
+
execution_context: int | str | None = None,
|
|
2318
|
+
undo: bool | None = None,
|
|
2319
|
+
/,
|
|
2320
|
+
*,
|
|
2321
|
+
modifier: str = "",
|
|
2322
|
+
index: int | None = 0,
|
|
2323
|
+
) -> None:
|
|
2324
|
+
"""Change the strip modifiers index in the stack so it evaluates after the set number of others
|
|
2325
|
+
|
|
2326
|
+
:type execution_context: int | str | None
|
|
2327
|
+
:type undo: bool | None
|
|
2328
|
+
:param modifier: Modifier, Name of the modifier to edit
|
|
2329
|
+
:type modifier: str
|
|
2330
|
+
:param index: Index, The index to move the modifier to
|
|
2331
|
+
:type index: int | None
|
|
2332
|
+
"""
|
|
2333
|
+
|
|
2274
2334
|
def strip_modifier_remove(
|
|
2275
2335
|
execution_context: int | str | None = None,
|
|
2276
2336
|
undo: bool | None = None,
|
|
@@ -2286,6 +2346,21 @@ def strip_modifier_remove(
|
|
|
2286
2346
|
:type name: str
|
|
2287
2347
|
"""
|
|
2288
2348
|
|
|
2349
|
+
def strip_modifier_set_active(
|
|
2350
|
+
execution_context: int | str | None = None,
|
|
2351
|
+
undo: bool | None = None,
|
|
2352
|
+
/,
|
|
2353
|
+
*,
|
|
2354
|
+
modifier: str = "",
|
|
2355
|
+
) -> None:
|
|
2356
|
+
"""Activate the strip modifier to use as the context
|
|
2357
|
+
|
|
2358
|
+
:type execution_context: int | str | None
|
|
2359
|
+
:type undo: bool | None
|
|
2360
|
+
:param modifier: Modifier, Name of the strip modifier to edit
|
|
2361
|
+
:type modifier: str
|
|
2362
|
+
"""
|
|
2363
|
+
|
|
2289
2364
|
def strip_transform_clear(
|
|
2290
2365
|
execution_context: int | str | None = None,
|
|
2291
2366
|
undo: bool | None = None,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -4223,6 +4223,24 @@ def set_stereo_3d(
|
|
|
4223
4223
|
:type use_sidebyside_crosseyed: bool | None
|
|
4224
4224
|
"""
|
|
4225
4225
|
|
|
4226
|
+
def set_working_color_space(
|
|
4227
|
+
execution_context: int | str | None = None,
|
|
4228
|
+
undo: bool | None = None,
|
|
4229
|
+
/,
|
|
4230
|
+
*,
|
|
4231
|
+
convert_colors: bool | None = True,
|
|
4232
|
+
working_space: str | None = "",
|
|
4233
|
+
) -> None:
|
|
4234
|
+
"""Change the working color space of all colors in this blend file
|
|
4235
|
+
|
|
4236
|
+
:type execution_context: int | str | None
|
|
4237
|
+
:type undo: bool | None
|
|
4238
|
+
:param convert_colors: Convert Colors in All Data-blocks, Change colors in all data-blocks to the new working space
|
|
4239
|
+
:type convert_colors: bool | None
|
|
4240
|
+
:param working_space: Working Space, Color space to set
|
|
4241
|
+
:type working_space: str | None
|
|
4242
|
+
"""
|
|
4243
|
+
|
|
4226
4244
|
def splash(
|
|
4227
4245
|
execution_context: int | str | None = None,
|
|
4228
4246
|
undo: bool | None = None,
|