fake-bpy-module 20250313__py3-none-any.whl → 20250315__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.
- aud/__init__.pyi +1 -1
- blf/__init__.pyi +27 -0
- bpy/ops/export_scene/__init__.pyi +6 -2
- bpy/ops/grease_pencil/__init__.pyi +7 -0
- bpy/path/__init__.pyi +1 -1
- bpy/types/__init__.pyi +22 -2
- {fake_bpy_module-20250313.dist-info → fake_bpy_module-20250315.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250313.dist-info → fake_bpy_module-20250315.dist-info}/RECORD +10 -10
- {fake_bpy_module-20250313.dist-info → fake_bpy_module-20250315.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250313.dist-info → fake_bpy_module-20250315.dist-info}/top_level.txt +0 -0
aud/__init__.pyi
CHANGED
|
@@ -428,7 +428,7 @@ class Sound:
|
|
|
428
428
|
"""Sound objects are immutable and represent a sound that can be played simultaneously multiple times. They are called factories because they create reader objects internally that are used for playback."""
|
|
429
429
|
|
|
430
430
|
length: typing.Any
|
|
431
|
-
""" The
|
|
431
|
+
""" The length attribute returns the duration of the sound in seconds."""
|
|
432
432
|
|
|
433
433
|
specs: typing.Any
|
|
434
434
|
""" The sample specification of the sound as a tuple with rate and channel count."""
|
blf/__init__.pyi
CHANGED
|
@@ -9,6 +9,14 @@ need to use the GPU module gpu as well.
|
|
|
9
9
|
|
|
10
10
|
```../examples/blf.py```
|
|
11
11
|
|
|
12
|
+
|
|
13
|
+
--------------------
|
|
14
|
+
|
|
15
|
+
Example showing how text can be draw into an image.
|
|
16
|
+
This can be done by binding an image buffer (imbuf) to the font's ID.
|
|
17
|
+
|
|
18
|
+
```../examples/blf.1.py```
|
|
19
|
+
|
|
12
20
|
"""
|
|
13
21
|
|
|
14
22
|
import typing
|
|
@@ -25,6 +33,16 @@ def aspect(fontid: int, aspect: float):
|
|
|
25
33
|
:type aspect: float
|
|
26
34
|
"""
|
|
27
35
|
|
|
36
|
+
def bind_imbuf(fontid: int, image, display_name: None | str | None = None):
|
|
37
|
+
"""Context manager to draw text into an image buffer instead of the GPU's context.
|
|
38
|
+
|
|
39
|
+
:param fontid: The id of the typeface as returned by `blf.load`, for default font use 0.
|
|
40
|
+
:type fontid: int
|
|
41
|
+
:param display_name: The color management display name to use or None.
|
|
42
|
+
:type display_name: None | str | None
|
|
43
|
+
:return: The BLF ImBuf context manager.
|
|
44
|
+
"""
|
|
45
|
+
|
|
28
46
|
def clipping(fontid: int, xmin: float, ymin: float, xmax: float, ymax: float):
|
|
29
47
|
"""Set the clipping, enable/disable using CLIPPING.
|
|
30
48
|
|
|
@@ -84,6 +102,15 @@ def draw(fontid: int, text: str):
|
|
|
84
102
|
:type text: str
|
|
85
103
|
"""
|
|
86
104
|
|
|
105
|
+
def draw_buffer(fontid: int, text: str):
|
|
106
|
+
"""Draw text into the buffer bound to the fontid.
|
|
107
|
+
|
|
108
|
+
:param fontid: The id of the typeface as returned by `blf.load`, for default font use 0.
|
|
109
|
+
:type fontid: int
|
|
110
|
+
:param text: the text to draw.
|
|
111
|
+
:type text: str
|
|
112
|
+
"""
|
|
113
|
+
|
|
87
114
|
def enable(fontid: int, option: int):
|
|
88
115
|
"""Enable option.
|
|
89
116
|
|
|
@@ -29,7 +29,8 @@ def fbx(
|
|
|
29
29
|
| None = {"ARMATURE", "CAMERA", "EMPTY", "LIGHT", "MESH", "OTHER"},
|
|
30
30
|
use_mesh_modifiers: bool | None = True,
|
|
31
31
|
use_mesh_modifiers_render: bool | None = True,
|
|
32
|
-
mesh_smooth_type: typing.Literal["OFF", "FACE", "EDGE"
|
|
32
|
+
mesh_smooth_type: typing.Literal["OFF", "FACE", "EDGE", "SMOOTH_GROUP"]
|
|
33
|
+
| None = "OFF",
|
|
33
34
|
colors_type: typing.Literal["NONE", "SRGB", "LINEAR"] | None = "SRGB",
|
|
34
35
|
prioritize_active_color: bool | None = False,
|
|
35
36
|
use_subsurf: bool | None = False,
|
|
@@ -135,7 +136,10 @@ def fbx(
|
|
|
135
136
|
|
|
136
137
|
EDGE
|
|
137
138
|
Edge -- Write edge smoothing.
|
|
138
|
-
|
|
139
|
+
|
|
140
|
+
SMOOTH_GROUP
|
|
141
|
+
Smoothing Groups -- Write face smoothing groups.
|
|
142
|
+
:type mesh_smooth_type: typing.Literal['OFF','FACE','EDGE','SMOOTH_GROUP'] | None
|
|
139
143
|
:param colors_type: Vertex Colors, Export vertex color attributes
|
|
140
144
|
|
|
141
145
|
NONE
|
|
@@ -1637,6 +1637,13 @@ def stroke_smooth(
|
|
|
1637
1637
|
:type smooth_opacity: bool | None
|
|
1638
1638
|
"""
|
|
1639
1639
|
|
|
1640
|
+
def stroke_split(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1641
|
+
"""Split selected points to a new stroke
|
|
1642
|
+
|
|
1643
|
+
:type execution_context: int | str | None
|
|
1644
|
+
:type undo: bool | None
|
|
1645
|
+
"""
|
|
1646
|
+
|
|
1640
1647
|
def stroke_subdivide(
|
|
1641
1648
|
execution_context: int | str | None = None,
|
|
1642
1649
|
undo: bool | None = None,
|
bpy/path/__init__.pyi
CHANGED
|
@@ -87,7 +87,7 @@ def ensure_ext(filepath: str, ext: str, *, case_sensitive: bool = False) -> str:
|
|
|
87
87
|
:param filepath: The file path.
|
|
88
88
|
:type filepath: str
|
|
89
89
|
:param ext: The extension to check for, can be a compound extension. Should
|
|
90
|
-
start with a dot, such as
|
|
90
|
+
start with a dot, such as .blend or .tar.gz.
|
|
91
91
|
:type ext: str
|
|
92
92
|
:param case_sensitive: Check for matching case when comparing extensions.
|
|
93
93
|
:type case_sensitive: bool
|
bpy/types/__init__.pyi
CHANGED
|
@@ -70867,6 +70867,8 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
70867
70867
|
* FileSelectParams.filter_search
|
|
70868
70868
|
* FileSelectParams.display_size
|
|
70869
70869
|
* FileSelectParams.display_size_discrete
|
|
70870
|
+
* FileSelectParams.list_display_size
|
|
70871
|
+
* FileSelectParams.list_column_size
|
|
70870
70872
|
|
|
70871
70873
|
:columns: 2
|
|
70872
70874
|
|
|
@@ -141731,6 +141733,18 @@ class FileSelectParams(bpy_struct):
|
|
|
141731
141733
|
:type: str
|
|
141732
141734
|
"""
|
|
141733
141735
|
|
|
141736
|
+
list_column_size: int
|
|
141737
|
+
""" The width of columns in horizontal list views
|
|
141738
|
+
|
|
141739
|
+
:type: int
|
|
141740
|
+
"""
|
|
141741
|
+
|
|
141742
|
+
list_display_size: int
|
|
141743
|
+
""" Change the size of thumbnails in list views
|
|
141744
|
+
|
|
141745
|
+
:type: int
|
|
141746
|
+
"""
|
|
141747
|
+
|
|
141734
141748
|
recursion_level: typing.Literal["NONE", "BLEND", "ALL_1", "ALL_2", "ALL_3"]
|
|
141735
141749
|
""" Numbers of dirtree levels to show simultaneously
|
|
141736
141750
|
|
|
@@ -158351,10 +158365,10 @@ class GeometryNodeStoreNamedAttribute(GeometryNode, NodeInternal, Node, bpy_stru
|
|
|
158351
158365
|
class GeometryNodeStoreNamedGrid(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
158352
158366
|
"""Store grid data in a volume geometry with the specified name"""
|
|
158353
158367
|
|
|
158354
|
-
data_type: bpy._typing.rna_enums.
|
|
158368
|
+
data_type: bpy._typing.rna_enums.VolumeGridDataTypeItems
|
|
158355
158369
|
""" Type of grid data
|
|
158356
158370
|
|
|
158357
|
-
:type: bpy._typing.rna_enums.
|
|
158371
|
+
:type: bpy._typing.rna_enums.VolumeGridDataTypeItems
|
|
158358
158372
|
"""
|
|
158359
158373
|
|
|
158360
158374
|
@classmethod
|
|
@@ -159669,6 +159683,12 @@ class GeometryNodeViewer(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
159669
159683
|
:type: bpy._typing.rna_enums.AttributeDomainWithAutoItems
|
|
159670
159684
|
"""
|
|
159671
159685
|
|
|
159686
|
+
ui_shortcut: int
|
|
159687
|
+
"""
|
|
159688
|
+
|
|
159689
|
+
:type: int
|
|
159690
|
+
"""
|
|
159691
|
+
|
|
159672
159692
|
@classmethod
|
|
159673
159693
|
def is_registered_node_type(cls) -> bool:
|
|
159674
159694
|
"""True if a registered node type
|
|
@@ -17,7 +17,7 @@ addon_utils/__init__.pyi,sha256=f7nhdBInhF2_MG8xJPVRS6SlGEEDCKko105mojVclDw,3439
|
|
|
17
17
|
addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
animsys_refactor/__init__.pyi,sha256=IKeVVNRVdnhaJRRr1ji08VvnNmGJtl4mU7hCazq-ccA,670
|
|
19
19
|
animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
aud/__init__.pyi,sha256=
|
|
20
|
+
aud/__init__.pyi,sha256=u_BPDhZek4wpXgNMjh1w9M7dTc47IGmfR1me5uAdcEg,33575
|
|
21
21
|
aud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
bgl/__init__.pyi,sha256=TctGyhZyWTsWVp5lG9XjXUEFRj8ejnIucL06KjCe9AY,99561
|
|
23
23
|
bgl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -181,7 +181,7 @@ bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
181
181
|
bl_ui_utils/layout/__init__.pyi,sha256=BBW6hJ_J1_hBrSDcrww6oYTdEul1J9R-gzdNI9t8wF4,207
|
|
182
182
|
blend_render_info/__init__.pyi,sha256=LzefxbLWZq-zkqKQc0YkjzXU8jppuStiPS7yJbA9nrQ,266
|
|
183
183
|
blend_render_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
|
-
blf/__init__.pyi,sha256=
|
|
184
|
+
blf/__init__.pyi,sha256=ii_abRKx8XqkApELPV6_3gwZVp0pUZs6cBr3qtzkSqs,6648
|
|
185
185
|
blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
186
|
bmesh/__init__.pyi,sha256=YOez3jb0tQcWQUH2qiy3C2eUtjlNpQdS_HnZUxduUqQ,1527
|
|
187
187
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -220,7 +220,7 @@ bpy/ops/cycles/__init__.pyi,sha256=wpr-6dy_yQc7R4mF-e3sPK67nR2X6hMnbLevI6xHozk,1
|
|
|
220
220
|
bpy/ops/dpaint/__init__.pyi,sha256=9c4iWq0b5rd_bwy132hZ0puT1b6MYsQFD9Gsuy9IFR8,1582
|
|
221
221
|
bpy/ops/ed/__init__.pyi,sha256=ToAbK51M0V5uEjpG4ENeXLfzqqzt0RBPpqD7-cP_ddI,7129
|
|
222
222
|
bpy/ops/export_anim/__init__.pyi,sha256=vMJtrDBdESAFGNAyzK3vKVdjfhzjbaS5I3qqGFZatS4,2054
|
|
223
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
223
|
+
bpy/ops/export_scene/__init__.pyi,sha256=WQxTBro7MQ0JY4rMtRCHocmBfBMc2iEG7aF5zBXdPgE,40452
|
|
224
224
|
bpy/ops/extensions/__init__.pyi,sha256=4GEwMrDb2GWypyU9-pxv3A1OxyJ73Zgr005VifV4R24,12327
|
|
225
225
|
bpy/ops/file/__init__.pyi,sha256=RcQ7PXPKaFvA5XNsUbGrovqFjvjlvJ3LsEdp8k9MkCM,19287
|
|
226
226
|
bpy/ops/fluid/__init__.pyi,sha256=lJDfm8cfRkm9S42vutMzeAeZBezIPIheRrMVaYpr4cY,3218
|
|
@@ -229,7 +229,7 @@ bpy/ops/geometry/__init__.pyi,sha256=fAv7_BGMFQa5vixcm6tyKguDi_sbfnPSLK8Wi-Sht8s
|
|
|
229
229
|
bpy/ops/gizmogroup/__init__.pyi,sha256=FJqZ3Cfe4EuuTxNCDZwbZtPxRuppxibrEFZVJiWsFqU,1289
|
|
230
230
|
bpy/ops/gpencil/__init__.pyi,sha256=vNZ7b6FETSovKJVYC9yN8wIBOh9F4d9DSurNeBdUduk,4859
|
|
231
231
|
bpy/ops/graph/__init__.pyi,sha256=N6A_44dYq5ShZyWZeT12T-kFibqYaMNHvkuBhO5XdTY,41730
|
|
232
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
232
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=i2YanaDA0kzc5vCXupQ7V1bW0MMKpfoL4fXVE2xv6IQ,62926
|
|
233
233
|
bpy/ops/image/__init__.pyi,sha256=mBK-uC_UY3pesucvwHPdNNTf092_QxGPCYb38Pj-C24,52493
|
|
234
234
|
bpy/ops/import_anim/__init__.pyi,sha256=ZyT-zjTRWvhOapP9D8G_eHO09JJNlT-ofF1SCC0rrOk,3073
|
|
235
235
|
bpy/ops/import_curve/__init__.pyi,sha256=_4ievJ9zQxVxcyTkZ1exj42uAPD_WZUN5iM-ZfRsptw,741
|
|
@@ -277,9 +277,9 @@ bpy/ops/view3d/__init__.pyi,sha256=e9lPztt21KmW5WQOvzZBYO5WXLmQE16BHjLA83rwbOI,3
|
|
|
277
277
|
bpy/ops/wm/__init__.pyi,sha256=JH4Yk8YPdt2ISpBfIF2Wf3z7lfj4N-9IlvVgvfu57bY,215953
|
|
278
278
|
bpy/ops/workspace/__init__.pyi,sha256=hXSSQZl7IwVFrxMveYrlSKGWY7BjrsV-cKagPzhuT0w,2010
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
|
-
bpy/path/__init__.pyi,sha256=
|
|
280
|
+
bpy/path/__init__.pyi,sha256=7-_wXRbyGJSoalxgAiuGAPvcM988qoM5DdQ2A8p1kpk,5507
|
|
281
281
|
bpy/props/__init__.pyi,sha256=QR_11bCyEyK-Q85yZhNDW6BsqHVq73C9IL_qShksqQU,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=e7MRwNQy9-qOyCboY-CEsEpXSx_jVEFbfJS8Qnm1UWg,5485679
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=sTpVkInNYv883pb3TyZzGLQbn468mQHzz_sUG9UMp6M,14936
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=RF4ii5Rs-FetM_ZmC0GCpMSiin5evppVj62-CmKK76s,2307
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250315.dist-info/METADATA,sha256=Ypvdsk05Ee4z4Uhken7ppN0_-nFkPznMaBlXNcL4pH4,7429
|
|
365
|
+
fake_bpy_module-20250315.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
366
|
+
fake_bpy_module-20250315.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250315.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|