fake-bge-module 20250210__py3-none-any.whl → 20250212__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_internal/extensions/wheel_manager/__init__.pyi +1 -1
- addon_utils/__init__.pyi +3 -0
- bpy/ops/__init__.pyi +9 -3
- bpy/ops/grease_pencil/__init__.pyi +12 -0
- bpy/ops/sequencer/__init__.pyi +2 -10
- bpy/types/__init__.pyi +32156 -32083
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250212.dist-info}/METADATA +1 -1
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250212.dist-info}/RECORD +11 -11
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250212.dist-info}/WHEEL +0 -0
- {fake_bge_module-20250210.dist-info → fake_bge_module-20250212.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
|
|
5
5
|
def apply_action(
|
|
6
|
-
*, local_dir, local_dir_site_packages, wheel_list, remove_error_fn, debug
|
|
6
|
+
*, local_dir, local_dir_site_packages, wheel_list, error_fn, remove_error_fn, debug
|
|
7
7
|
): ...
|
|
8
8
|
def wheel_list_deduplicate_as_skip_set(wheel_list):
|
|
9
9
|
"""Return all wheel paths to skip."""
|
addon_utils/__init__.pyi
CHANGED
|
@@ -64,6 +64,7 @@ def enable(
|
|
|
64
64
|
def extensions_refresh(
|
|
65
65
|
ensure_wheels: bool = True,
|
|
66
66
|
addon_modules_pending: None | collections.abc.Sequence[str] | None = None,
|
|
67
|
+
handle_error: None | collections.abc.Callable[None] | None = None,
|
|
67
68
|
):
|
|
68
69
|
"""Ensure data relating to extensions is up to date.
|
|
69
70
|
This should be called after extensions on the file-system have changed.
|
|
@@ -73,6 +74,8 @@ def extensions_refresh(
|
|
|
73
74
|
:param addon_modules_pending: Refresh these add-ons by listing their package names, as if they are enabled.
|
|
74
75
|
This is needed so wheels can be setup before the add-on is enabled.
|
|
75
76
|
:type addon_modules_pending: None | collections.abc.Sequence[str] | None
|
|
77
|
+
:param handle_error: Called in the case of an error, taking an exception argument.
|
|
78
|
+
:type handle_error: None | collections.abc.Callable[None] | None
|
|
76
79
|
"""
|
|
77
80
|
|
|
78
81
|
def module_bl_info(mod, *, info_basis=None): ...
|
bpy/ops/__init__.pyi
CHANGED
|
@@ -62,12 +62,14 @@ It is possible to override context members that the operator sees, so that they
|
|
|
62
62
|
act on specified rather than the selected or active data, or to execute an
|
|
63
63
|
operator in the different part of the user interface.
|
|
64
64
|
|
|
65
|
-
The context overrides are passed as
|
|
66
|
-
member names in bpy.context
|
|
65
|
+
The context overrides are passed in as keyword arguments,
|
|
66
|
+
with keywords matching the context member names in bpy.context
|
|
67
|
+
|
|
68
|
+
.
|
|
67
69
|
For example to override bpy.context.active_object
|
|
68
70
|
|
|
69
71
|
,
|
|
70
|
-
you would pass
|
|
72
|
+
you would pass active_object=object
|
|
71
73
|
|
|
72
74
|
to bpy.types.Context.temp_override.
|
|
73
75
|
|
|
@@ -75,6 +77,10 @@ you would pass {'active_object': object}
|
|
|
75
77
|
You will nearly always want to use a copy of the actual current context as basis
|
|
76
78
|
(otherwise, you'll have to find and gather all needed data yourself).
|
|
77
79
|
|
|
80
|
+
[NOTE]
|
|
81
|
+
Context members are names which Blender uses for data access,
|
|
82
|
+
overrides do not extend to overriding methods or any Python specific functionality.
|
|
83
|
+
|
|
78
84
|
```../examples/bpy.ops.1.py```
|
|
79
85
|
|
|
80
86
|
|
|
@@ -177,6 +177,15 @@ def delete(execution_context: int | str | None = None, undo: bool | None = None)
|
|
|
177
177
|
:type undo: bool | None
|
|
178
178
|
"""
|
|
179
179
|
|
|
180
|
+
def delete_breakdown(
|
|
181
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
182
|
+
):
|
|
183
|
+
"""Remove breakdown frames generated by interpolating between two Grease Pencil frames
|
|
184
|
+
|
|
185
|
+
:type execution_context: int | str | None
|
|
186
|
+
:type undo: bool | None
|
|
187
|
+
"""
|
|
188
|
+
|
|
180
189
|
def delete_frame(
|
|
181
190
|
execution_context: int | str | None = None,
|
|
182
191
|
undo: bool | None = None,
|
|
@@ -940,6 +949,7 @@ def paste(
|
|
|
940
949
|
undo: bool | None = None,
|
|
941
950
|
/,
|
|
942
951
|
*,
|
|
952
|
+
type: typing.Literal["ACTIVE", "LAYER"] | None = "ACTIVE",
|
|
943
953
|
paste_back: bool | None = False,
|
|
944
954
|
keep_world_transform: bool | None = False,
|
|
945
955
|
):
|
|
@@ -947,6 +957,8 @@ def paste(
|
|
|
947
957
|
|
|
948
958
|
:type execution_context: int | str | None
|
|
949
959
|
:type undo: bool | None
|
|
960
|
+
:param type: Type
|
|
961
|
+
:type type: typing.Literal['ACTIVE','LAYER'] | None
|
|
950
962
|
:param paste_back: Paste on Back, Add pasted strokes behind all strokes
|
|
951
963
|
:type paste_back: bool | None
|
|
952
964
|
:param keep_world_transform: Keep World Transform, Keep the world transform of strokes from the clipboard unchanged
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -28,7 +28,6 @@ def change_effect_type(
|
|
|
28
28
|
"ALPHA_UNDER",
|
|
29
29
|
"GAMMA_CROSS",
|
|
30
30
|
"MULTIPLY",
|
|
31
|
-
"OVER_DROP",
|
|
32
31
|
"WIPE",
|
|
33
32
|
"GLOW",
|
|
34
33
|
"TRANSFORM",
|
|
@@ -69,9 +68,6 @@ def change_effect_type(
|
|
|
69
68
|
MULTIPLY
|
|
70
69
|
Multiply -- Multiply effect strip type.
|
|
71
70
|
|
|
72
|
-
OVER_DROP
|
|
73
|
-
Alpha Over Drop -- Alpha Over Drop effect strip type.
|
|
74
|
-
|
|
75
71
|
WIPE
|
|
76
72
|
Wipe -- Wipe effect strip type.
|
|
77
73
|
|
|
@@ -101,7 +97,7 @@ def change_effect_type(
|
|
|
101
97
|
|
|
102
98
|
COLORMIX
|
|
103
99
|
Color Mix.
|
|
104
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
100
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
105
101
|
"""
|
|
106
102
|
|
|
107
103
|
def change_path(
|
|
@@ -343,7 +339,6 @@ def effect_strip_add(
|
|
|
343
339
|
"ALPHA_UNDER",
|
|
344
340
|
"GAMMA_CROSS",
|
|
345
341
|
"MULTIPLY",
|
|
346
|
-
"OVER_DROP",
|
|
347
342
|
"WIPE",
|
|
348
343
|
"GLOW",
|
|
349
344
|
"TRANSFORM",
|
|
@@ -391,9 +386,6 @@ def effect_strip_add(
|
|
|
391
386
|
MULTIPLY
|
|
392
387
|
Multiply -- Multiply effect strip type.
|
|
393
388
|
|
|
394
|
-
OVER_DROP
|
|
395
|
-
Alpha Over Drop -- Alpha Over Drop effect strip type.
|
|
396
|
-
|
|
397
389
|
WIPE
|
|
398
390
|
Wipe -- Wipe effect strip type.
|
|
399
391
|
|
|
@@ -423,7 +415,7 @@ def effect_strip_add(
|
|
|
423
415
|
|
|
424
416
|
COLORMIX
|
|
425
417
|
Color Mix.
|
|
426
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','
|
|
418
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','TRANSFORM','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
427
419
|
:param frame_start: Start Frame, Start frame of the sequence strip
|
|
428
420
|
:type frame_start: int | None
|
|
429
421
|
:param frame_end: End Frame, End frame for the color strip
|