fake-bge-module 20250226__py3-none-any.whl → 20250228__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.
- bpy/ops/anim/__init__.pyi +3 -0
- bpy/ops/extensions/__init__.pyi +0 -18
- bpy/ops/object/__init__.pyi +9 -0
- bpy/ops/sculpt/__init__.pyi +3 -0
- bpy/types/__init__.pyi +32779 -32755
- {fake_bge_module-20250226.dist-info → fake_bge_module-20250228.dist-info}/METADATA +1 -1
- {fake_bge_module-20250226.dist-info → fake_bge_module-20250228.dist-info}/RECORD +10 -10
- {fake_bge_module-20250226.dist-info → fake_bge_module-20250228.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bge_module-20250226.dist-info → fake_bge_module-20250228.dist-info}/top_level.txt +0 -0
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def change_frame(
|
|
|
9
9
|
*,
|
|
10
10
|
frame: float | None = 0.0,
|
|
11
11
|
snap: bool | None = False,
|
|
12
|
+
seq_solo_preview: bool | None = False,
|
|
12
13
|
):
|
|
13
14
|
"""Interactively change the current frame number
|
|
14
15
|
|
|
@@ -18,6 +19,8 @@ def change_frame(
|
|
|
18
19
|
:type frame: float | None
|
|
19
20
|
:param snap: Snap
|
|
20
21
|
:type snap: bool | None
|
|
22
|
+
:param seq_solo_preview: Strip Preview
|
|
23
|
+
:type seq_solo_preview: bool | None
|
|
21
24
|
"""
|
|
22
25
|
|
|
23
26
|
def channel_select_keys(
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -3,15 +3,6 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
|
-
def dummy_progress(
|
|
7
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
8
|
-
):
|
|
9
|
-
"""Undocumented, consider contributing.
|
|
10
|
-
|
|
11
|
-
:type execution_context: int | str | None
|
|
12
|
-
:type undo: bool | None
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
6
|
def package_disable(
|
|
16
7
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
17
8
|
):
|
|
@@ -21,15 +12,6 @@ def package_disable(
|
|
|
21
12
|
:type undo: bool | None
|
|
22
13
|
"""
|
|
23
14
|
|
|
24
|
-
def package_enable_not_installed(
|
|
25
|
-
execution_context: int | str | None = None, undo: bool | None = None
|
|
26
|
-
):
|
|
27
|
-
"""Turn on this extension
|
|
28
|
-
|
|
29
|
-
:type execution_context: int | str | None
|
|
30
|
-
:type undo: bool | None
|
|
31
|
-
"""
|
|
32
|
-
|
|
33
15
|
def package_install(
|
|
34
16
|
execution_context: int | str | None = None,
|
|
35
17
|
undo: bool | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -5061,6 +5061,15 @@ def vertex_weight_set_active(
|
|
|
5061
5061
|
:type weight_group: int | None
|
|
5062
5062
|
"""
|
|
5063
5063
|
|
|
5064
|
+
def visual_geometry_to_objects(
|
|
5065
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
5066
|
+
):
|
|
5067
|
+
"""Convert geometry and instances into editable objects and collections
|
|
5068
|
+
|
|
5069
|
+
:type execution_context: int | str | None
|
|
5070
|
+
:type undo: bool | None
|
|
5071
|
+
"""
|
|
5072
|
+
|
|
5064
5073
|
def visual_transform_apply(
|
|
5065
5074
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
5066
5075
|
):
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -558,6 +558,7 @@ def mask_by_color(
|
|
|
558
558
|
invert: bool | None = False,
|
|
559
559
|
preserve_previous_mask: bool | None = False,
|
|
560
560
|
threshold: float | None = 0.35,
|
|
561
|
+
location: collections.abc.Iterable[int] | None = (0, 0),
|
|
561
562
|
):
|
|
562
563
|
"""Creates a mask based on the active color attribute
|
|
563
564
|
|
|
@@ -571,6 +572,8 @@ def mask_by_color(
|
|
|
571
572
|
:type preserve_previous_mask: bool | None
|
|
572
573
|
:param threshold: Threshold, How much changes in color affect the mask generation
|
|
573
574
|
:type threshold: float | None
|
|
575
|
+
:param location: Location, Region coordinates of sampling
|
|
576
|
+
:type location: collections.abc.Iterable[int] | None
|
|
574
577
|
"""
|
|
575
578
|
|
|
576
579
|
def mask_filter(
|