fake-bpy-module 20250519__py3-none-any.whl → 20250521__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/ops/asset/__init__.pyi +21 -0
- bpy/ops/object/__init__.pyi +1 -1
- bpy/ops/pose/__init__.pyi +23 -2
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/ops/spreadsheet/__init__.pyi +9 -0
- bpy/ops/wm/__init__.pyi +1 -1
- bpy/types/__init__.pyi +658 -181
- {fake_bpy_module-20250519.dist-info → fake_bpy_module-20250521.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250519.dist-info → fake_bpy_module-20250521.dist-info}/RECORD +13 -13
- {fake_bpy_module-20250519.dist-info → fake_bpy_module-20250521.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20250519.dist-info → fake_bpy_module-20250521.dist-info}/top_level.txt +0 -0
bpy/ops/asset/__init__.pyi
CHANGED
|
@@ -231,6 +231,27 @@ def open_containing_blend_file(
|
|
|
231
231
|
:type undo: bool | None
|
|
232
232
|
"""
|
|
233
233
|
|
|
234
|
+
def screenshot_preview(
|
|
235
|
+
execution_context: int | str | None = None,
|
|
236
|
+
undo: bool | None = None,
|
|
237
|
+
/,
|
|
238
|
+
*,
|
|
239
|
+
p1: collections.abc.Iterable[int] | None = (0, 0),
|
|
240
|
+
p2: collections.abc.Iterable[int] | None = (0, 0),
|
|
241
|
+
force_square: bool | None = True,
|
|
242
|
+
):
|
|
243
|
+
"""Capture a screenshot to use as a preview for the selected asset
|
|
244
|
+
|
|
245
|
+
:type execution_context: int | str | None
|
|
246
|
+
:type undo: bool | None
|
|
247
|
+
:param p1: Point 1, First point of the screenshot in screenspace
|
|
248
|
+
:type p1: collections.abc.Iterable[int] | None
|
|
249
|
+
:param p2: Point 2, Second point of the screenshot in screenspace
|
|
250
|
+
:type p2: collections.abc.Iterable[int] | None
|
|
251
|
+
:param force_square: Force Square, If enabled, the screenshot will have the same height as width
|
|
252
|
+
:type force_square: bool | None
|
|
253
|
+
"""
|
|
254
|
+
|
|
234
255
|
def tag_add(execution_context: int | str | None = None, undo: bool | None = None):
|
|
235
256
|
"""Add a new keyword tag to the active asset
|
|
236
257
|
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -4001,7 +4001,7 @@ def shape_key_clear(
|
|
|
4001
4001
|
def shape_key_copy(
|
|
4002
4002
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
4003
4003
|
):
|
|
4004
|
-
"""Duplicate the
|
|
4004
|
+
"""Duplicate the active shape key
|
|
4005
4005
|
|
|
4006
4006
|
:type execution_context: int | str | None
|
|
4007
4007
|
:type undo: bool | None
|
bpy/ops/pose/__init__.pyi
CHANGED
|
@@ -656,7 +656,16 @@ def select_grouped(
|
|
|
656
656
|
/,
|
|
657
657
|
*,
|
|
658
658
|
extend: bool | None = False,
|
|
659
|
-
type: typing.Literal[
|
|
659
|
+
type: typing.Literal[
|
|
660
|
+
"COLLECTION",
|
|
661
|
+
"COLOR",
|
|
662
|
+
"KEYINGSET",
|
|
663
|
+
"CHILDREN",
|
|
664
|
+
"CHILDREN_IMMEDIATE",
|
|
665
|
+
"PARENT",
|
|
666
|
+
"SIBILINGS",
|
|
667
|
+
]
|
|
668
|
+
| None = "COLLECTION",
|
|
660
669
|
):
|
|
661
670
|
"""Select all visible bones grouped by similar properties
|
|
662
671
|
|
|
@@ -674,7 +683,19 @@ def select_grouped(
|
|
|
674
683
|
|
|
675
684
|
KEYINGSET
|
|
676
685
|
Keying Set -- All bones affected by active Keying Set.
|
|
677
|
-
|
|
686
|
+
|
|
687
|
+
CHILDREN
|
|
688
|
+
Children -- Select all children of currently selected bones.
|
|
689
|
+
|
|
690
|
+
CHILDREN_IMMEDIATE
|
|
691
|
+
Immediate Children -- Select direct children of currently selected bones.
|
|
692
|
+
|
|
693
|
+
PARENT
|
|
694
|
+
Parents -- Select the parents of currently selected bones.
|
|
695
|
+
|
|
696
|
+
SIBILINGS
|
|
697
|
+
Siblings -- Select all bones that have the same parent as currently selected bones.
|
|
698
|
+
:type type: typing.Literal['COLLECTION','COLOR','KEYINGSET','CHILDREN','CHILDREN_IMMEDIATE','PARENT','SIBILINGS'] | None
|
|
678
699
|
"""
|
|
679
700
|
|
|
680
701
|
def select_hierarchy(
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -2255,7 +2255,7 @@ def text_edit_mode_toggle(
|
|
|
2255
2255
|
def text_edit_paste(
|
|
2256
2256
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
2257
2257
|
):
|
|
2258
|
-
"""Paste text
|
|
2258
|
+
"""Paste text from clipboard
|
|
2259
2259
|
|
|
2260
2260
|
:type execution_context: int | str | None
|
|
2261
2261
|
:type undo: bool | None
|
bpy/ops/spreadsheet/__init__.pyi
CHANGED
|
@@ -52,6 +52,15 @@ def remove_row_filter_rule(
|
|
|
52
52
|
:type index: int | None
|
|
53
53
|
"""
|
|
54
54
|
|
|
55
|
+
def reorder_columns(
|
|
56
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
57
|
+
):
|
|
58
|
+
"""Change the order of columns
|
|
59
|
+
|
|
60
|
+
:type execution_context: int | str | None
|
|
61
|
+
:type undo: bool | None
|
|
62
|
+
"""
|
|
63
|
+
|
|
55
64
|
def resize_column(execution_context: int | str | None = None, undo: bool | None = None):
|
|
56
65
|
"""Resize a spreadsheet column
|
|
57
66
|
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -2904,7 +2904,7 @@ def obj_import(
|
|
|
2904
2904
|
:type import_vertex_groups: bool | None
|
|
2905
2905
|
:param validate_meshes: Validate Meshes, Ensure the data is valid (when disabled, data may be imported which causes crashes displaying or editing)
|
|
2906
2906
|
:type validate_meshes: bool | None
|
|
2907
|
-
:param close_spline_loops: Detect Cyclic Curves, Join curve endpoints if overlapping control points are detected(if disabled, no curves will be cyclic)
|
|
2907
|
+
:param close_spline_loops: Detect Cyclic Curves, Join curve endpoints if overlapping control points are detected (if disabled, no curves will be cyclic)
|
|
2908
2908
|
:type close_spline_loops: bool | None
|
|
2909
2909
|
:param collection_separator: Path Separator, Character used to separate objects name into hierarchical structure
|
|
2910
2910
|
:type collection_separator: str
|