fake-bpy-module 20250207__py3-none-any.whl → 20250208__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/extensions/wheel_manager/__init__.pyi +1 -1
- addon_utils/__init__.pyi +3 -0
- bpy/ops/grease_pencil/__init__.pyi +12 -0
- {fake_bpy_module-20250207.dist-info → fake_bpy_module-20250208.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250207.dist-info → fake_bpy_module-20250208.dist-info}/RECORD +8 -8
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20250207.dist-info → fake_bpy_module-20250208.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250207.dist-info → fake_bpy_module-20250208.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): ...
|
|
@@ -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
|
|
@@ -5,7 +5,7 @@ _bpy_internal/addons/cli/__init__.pyi,sha256=78S0XD4GcfiZ98YrBrms-BCZGj-22RnW-0K
|
|
|
5
5
|
_bpy_internal/extensions/__init__.pyi,sha256=ZGyTE9mr3RLfqj0GTwlGwzvQbp5szHhRlmSz0575T9k,211
|
|
6
6
|
_bpy_internal/extensions/junction_module/__init__.pyi,sha256=ktaqFveW9pjEnfWTl7eDEpqPZ8sk5L7mpDfSZ3wUkyM,944
|
|
7
7
|
_bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=kxjVoScm3xS7rP0ZGLHHCnk9rQqTxn963J-P6BKtiZE,694
|
|
8
|
-
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=
|
|
8
|
+
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=4PiSkeTFVHMuOpbvIuk903o8_TwEeEM1k973cZAFZqo,923
|
|
9
9
|
_bpy_internal/freedesktop/__init__.pyi,sha256=UTm4TARyHqwJBil5RwmuxmQz6tvDf6P3PBkIQgXIDd8,771
|
|
10
10
|
_bpy_internal/grease_pencil/__init__.pyi,sha256=59jc9JrMDQUQWZM07gI9dbBQgxuRLxOfMJxd88PsCtY,93
|
|
11
11
|
_bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=wbOuOgMWgSIFlZyat22KvKmLmye99OG5rEbb6CqC-mo,1793
|
|
@@ -13,7 +13,7 @@ _bpy_internal/system_info/__init__.pyi,sha256=cR0YfdA5e1gzPoJPkqRHZUm8ArCVuyulST
|
|
|
13
13
|
_bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=KkCIdvrNtqXRvKaojEVaARNyX3CFnj8UCo7B_nKLC0A,86
|
|
14
14
|
_bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=L1cEExq7nGmeqjqhRH6p5yUL4CN6iEQY0wAYLSw2nKw,109
|
|
15
15
|
_bpy_internal/system_info/url_prefill_startup/__init__.pyi,sha256=cL1oQCJ1CvBoUdGEPgZVpxOOJPA7bZUJpzRl8zglcYk,107
|
|
16
|
-
addon_utils/__init__.pyi,sha256=
|
|
16
|
+
addon_utils/__init__.pyi,sha256=do1hilF1ZM0zFLutvkbeENW3Ax0ZXIKjEaPdPljMyWs,3412
|
|
17
17
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
animsys_refactor/__init__.pyi,sha256=FVtTS8ep5YY_wxoK9FesObKvYKIffFgmOyS74iuza0s,643
|
|
19
19
|
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -228,7 +228,7 @@ bpy/ops/geometry/__init__.pyi,sha256=5E3W4rVQTQmgHc8p8Adr9EHk-VsTrhwYbCvchw4Ax7c
|
|
|
228
228
|
bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
|
|
229
229
|
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
230
230
|
bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
|
|
231
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
231
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=7UMA3MkUlsSmr2HXPYWb8VeHYufNqcvJ2GVp7D-2nO8,62088
|
|
232
232
|
bpy/ops/image/__init__.pyi,sha256=GiNPnZRmVUdtFmuckOxdV55Po_2ul_qda5wU2fFrm6U,52466
|
|
233
233
|
bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
|
|
234
234
|
bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
|
|
@@ -326,7 +326,7 @@ gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
|
|
|
326
326
|
gpu/types/__init__.pyi,sha256=Q8Gym2MsHoDFLW7snVIfPMUGCQns-XA2URYfeOV3nnk,27923
|
|
327
327
|
gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
|
|
328
328
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
329
|
+
gpu_extras/batch/__init__.pyi,sha256=nbeZNWRKChMLBkKYc4mLF9abAffVyzEHp01yf64gZK8,1279
|
|
330
330
|
gpu_extras/presets/__init__.pyi,sha256=pDhGELr5vKTZ9yDsLJ4Y836Kmh7cs95rDhSwd1i5e-s,1647
|
|
331
331
|
graphviz_export/__init__.pyi,sha256=LBiepSfMSL7Qix8FZ6LYKmbPgu1AHRvRw3yHDDWYrEw,215
|
|
332
332
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
359
359
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
361
361
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
362
|
+
fake_bpy_module-20250208.dist-info/METADATA,sha256=jRJJ19AvpaujJliiMqfHVznjXj7RdjNwdDMx-uZGqls,7429
|
|
363
|
+
fake_bpy_module-20250208.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
364
|
+
fake_bpy_module-20250208.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20250208.dist-info/RECORD,,
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bgl
|
|
5
4
|
import gpu.types
|
|
6
5
|
|
|
7
6
|
def batch_for_shader(
|
|
@@ -9,7 +8,7 @@ def batch_for_shader(
|
|
|
9
8
|
type: str,
|
|
10
9
|
content: dict[
|
|
11
10
|
str,
|
|
12
|
-
|
|
11
|
+
gpu.types.Buffer
|
|
13
12
|
| collections.abc.Sequence[float]
|
|
14
13
|
| collections.abc.Sequence[int]
|
|
15
14
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -26,7 +25,7 @@ def batch_for_shader(
|
|
|
26
25
|
:type type: str
|
|
27
26
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
28
27
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
29
|
-
:type content: dict[str,
|
|
28
|
+
:type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
30
29
|
:return: compatible batch
|
|
31
30
|
:rtype: gpu.types.GPUBatch
|
|
32
31
|
"""
|
|
File without changes
|
|
File without changes
|