fake-bpy-module 20250505__py3-none-any.whl → 20250520__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/grease_pencil/stroke/__init__.pyi +15 -2
- bl_operators/node/__init__.pyi +35 -0
- bl_ui/node_add_menu/__init__.pyi +8 -0
- bl_ui/node_add_menu_compositor/__init__.pyi +10 -10
- bl_ui/node_add_menu_geometry/__init__.pyi +6 -6
- bl_ui/node_add_menu_shader/__init__.pyi +2 -2
- bl_ui/space_sequencer/__init__.pyi +0 -42
- bl_ui/space_view3d/__init__.pyi +1 -0
- bpy/_typing/rna_enums/__init__.pyi +9 -0
- bpy/app/translations/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +6 -2
- bpy/ops/brush/__init__.pyi +3 -0
- bpy/ops/mesh/__init__.pyi +0 -72
- bpy/ops/node/__init__.pyi +56 -0
- bpy/ops/object/__init__.pyi +11 -2
- bpy/ops/sculpt/__init__.pyi +72 -0
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/ops/spreadsheet/__init__.pyi +14 -0
- bpy/ops/transform/__init__.pyi +3 -0
- bpy/ops/wm/__init__.pyi +1 -1
- bpy/types/__init__.pyi +31880 -30585
- bpy/utils/units/__init__.pyi +1 -1
- {fake_bpy_module-20250505.dist-info → fake_bpy_module-20250520.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250505.dist-info → fake_bpy_module-20250520.dist-info}/RECORD +28 -28
- {fake_bpy_module-20250505.dist-info → fake_bpy_module-20250520.dist-info}/WHEEL +1 -1
- gpu/types/__init__.pyi +1 -1
- rna_info/__init__.pyi +1 -0
- {fake_bpy_module-20250505.dist-info → fake_bpy_module-20250520.dist-info}/top_level.txt +0 -0
bpy/ops/transform/__init__.pyi
CHANGED
|
@@ -1161,6 +1161,7 @@ def translate(
|
|
|
1161
1161
|
release_confirm: bool | None = False,
|
|
1162
1162
|
use_accurate: bool | None = False,
|
|
1163
1163
|
use_automerge_and_split: bool | None = False,
|
|
1164
|
+
translate_origin: bool | None = False,
|
|
1164
1165
|
):
|
|
1165
1166
|
"""Move selected items
|
|
1166
1167
|
|
|
@@ -1228,6 +1229,8 @@ def translate(
|
|
|
1228
1229
|
:type use_accurate: bool | None
|
|
1229
1230
|
:param use_automerge_and_split: Auto Merge & Split, Forces the use of Auto Merge and Split
|
|
1230
1231
|
:type use_automerge_and_split: bool | None
|
|
1232
|
+
:param translate_origin: Translate Origin, Translate origin instead of selection
|
|
1233
|
+
:type translate_origin: bool | None
|
|
1231
1234
|
"""
|
|
1232
1235
|
|
|
1233
1236
|
def vert_crease(
|
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
|