fake-bpy-module 20250114__py3-none-any.whl → 20250116__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.
- bl_ui/space_sequencer/__init__.pyi +1 -1
- bpy/ops/collection/__init__.pyi +1 -1
- bpy/ops/curve/__init__.pyi +1 -1
- bpy/ops/image/__init__.pyi +3 -0
- bpy/ops/object/__init__.pyi +0 -6
- bpy/types/__init__.pyi +34 -4
- {fake_bpy_module-20250114.dist-info → fake_bpy_module-20250116.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250114.dist-info → fake_bpy_module-20250116.dist-info}/RECORD +12 -12
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20250114.dist-info → fake_bpy_module-20250116.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250114.dist-info → fake_bpy_module-20250116.dist-info}/top_level.txt +0 -0
bpy/ops/collection/__init__.pyi
CHANGED
|
@@ -76,7 +76,7 @@ def objects_add_active(
|
|
|
76
76
|
*,
|
|
77
77
|
collection: str | None = "",
|
|
78
78
|
):
|
|
79
|
-
"""Add the object to
|
|
79
|
+
"""Add selected objects to one of the collections the active-object is part of. Optionally add to "All Collections" to ensure selected objects are included in the same collections as the active object
|
|
80
80
|
|
|
81
81
|
:type execution_context: int | str | None
|
|
82
82
|
:type undo: bool | None
|
bpy/ops/curve/__init__.pyi
CHANGED
|
@@ -693,7 +693,7 @@ def select_random(
|
|
|
693
693
|
"""
|
|
694
694
|
|
|
695
695
|
def select_row(execution_context: int | str | None = None, undo: bool | None = None):
|
|
696
|
-
"""Select a row of control points including active one
|
|
696
|
+
"""Select a row of control points including active one. Successive use on the same point switches between U/V directions
|
|
697
697
|
|
|
698
698
|
:type execution_context: int | str | None
|
|
699
699
|
:type undo: bool | None
|
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -1021,6 +1021,7 @@ def resize(
|
|
|
1021
1021
|
/,
|
|
1022
1022
|
*,
|
|
1023
1023
|
size: collections.abc.Iterable[int] | None = (0, 0),
|
|
1024
|
+
all_udims: bool | None = False,
|
|
1024
1025
|
):
|
|
1025
1026
|
"""Resize the image
|
|
1026
1027
|
|
|
@@ -1028,6 +1029,8 @@ def resize(
|
|
|
1028
1029
|
:type undo: bool | None
|
|
1029
1030
|
:param size: Size
|
|
1030
1031
|
:type size: collections.abc.Iterable[int] | None
|
|
1032
|
+
:param all_udims: All UDIM Tiles, Scale all the image's UDIM tiles
|
|
1033
|
+
:type all_udims: bool | None
|
|
1031
1034
|
"""
|
|
1032
1035
|
|
|
1033
1036
|
def rotate_orthogonal(
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -570,9 +570,7 @@ def convert(
|
|
|
570
570
|
| None = "MESH",
|
|
571
571
|
keep_original: bool | None = False,
|
|
572
572
|
merge_customdata: bool | None = True,
|
|
573
|
-
angle: float | None = 1.22173,
|
|
574
573
|
thickness: int | None = 5,
|
|
575
|
-
seams: bool | None = False,
|
|
576
574
|
faces: bool | None = True,
|
|
577
575
|
offset: float | None = 0.01,
|
|
578
576
|
):
|
|
@@ -601,12 +599,8 @@ def convert(
|
|
|
601
599
|
:type keep_original: bool | None
|
|
602
600
|
:param merge_customdata: Merge UVs, Merge UV coordinates that share a vertex to account for imprecision in some modifiers
|
|
603
601
|
:type merge_customdata: bool | None
|
|
604
|
-
:param angle: Threshold Angle, Threshold to determine ends of the strokes
|
|
605
|
-
:type angle: float | None
|
|
606
602
|
:param thickness: Thickness
|
|
607
603
|
:type thickness: int | None
|
|
608
|
-
:param seams: Only Seam Edges, Convert only seam edges
|
|
609
|
-
:type seams: bool | None
|
|
610
604
|
:param faces: Export Faces, Export faces as filled strokes
|
|
611
605
|
:type faces: bool | None
|
|
612
606
|
:param offset: Stroke Offset, Offset strokes from fill
|
bpy/types/__init__.pyi
CHANGED
|
@@ -79761,6 +79761,10 @@ FileHandler
|
|
|
79761
79761
|
|
|
79762
79762
|
--------------------
|
|
79763
79763
|
|
|
79764
|
+
* bpy.context.active_sequence_strip
|
|
79765
|
+
* bpy.context.selected_editable_sequences
|
|
79766
|
+
* bpy.context.selected_sequences
|
|
79767
|
+
* bpy.context.sequences
|
|
79764
79768
|
* AddSequence.input_1
|
|
79765
79769
|
* AddSequence.input_2
|
|
79766
79770
|
* AlphaOverSequence.input_1
|
|
@@ -132649,10 +132653,30 @@ class Context(bpy_struct):
|
|
|
132649
132653
|
:type: Object | None
|
|
132650
132654
|
"""
|
|
132651
132655
|
|
|
132652
|
-
active_sequence_strip:
|
|
132653
|
-
|
|
132654
|
-
|
|
132655
|
-
|
|
132656
|
+
active_sequence_strip: Strip | None
|
|
132657
|
+
"""
|
|
132658
|
+
|
|
132659
|
+
:type: Strip | None
|
|
132660
|
+
"""
|
|
132661
|
+
|
|
132662
|
+
sequences: list[Strip]
|
|
132663
|
+
"""
|
|
132664
|
+
|
|
132665
|
+
:type: list[Strip]
|
|
132666
|
+
"""
|
|
132667
|
+
|
|
132668
|
+
selected_sequences: list[Strip]
|
|
132669
|
+
"""
|
|
132670
|
+
|
|
132671
|
+
:type: list[Strip]
|
|
132672
|
+
"""
|
|
132673
|
+
|
|
132674
|
+
selected_editable_sequences: list[Strip]
|
|
132675
|
+
"""
|
|
132676
|
+
|
|
132677
|
+
:type: list[Strip]
|
|
132678
|
+
"""
|
|
132679
|
+
|
|
132656
132680
|
active_nla_track: NlaTrack | None
|
|
132657
132681
|
"""
|
|
132658
132682
|
|
|
@@ -134259,6 +134283,12 @@ class Curves(ID, bpy_struct):
|
|
|
134259
134283
|
:type: Object | None
|
|
134260
134284
|
"""
|
|
134261
134285
|
|
|
134286
|
+
surface_collision_distance: float
|
|
134287
|
+
""" Distance to keep the curves away from the surface
|
|
134288
|
+
|
|
134289
|
+
:type: float
|
|
134290
|
+
"""
|
|
134291
|
+
|
|
134262
134292
|
surface_uv_map: str
|
|
134263
134293
|
""" The name of the attribute on the surface mesh used to define the attachment of each curve
|
|
134264
134294
|
|
|
@@ -163,7 +163,7 @@ bl_ui/space_nla/__init__.pyi,sha256=uT7nGRBlJlDS-wYZGGGuMs17DK-_XsYoa1qkop7ZVyM,
|
|
|
163
163
|
bl_ui/space_node/__init__.pyi,sha256=sHP77K93twJEnel9dlQFAMjCBhLpC58LS6oK96OP1xo,17979
|
|
164
164
|
bl_ui/space_outliner/__init__.pyi,sha256=o_7H2lQtpKIncGyBU2lL7SHOp-emrqicrRoOBkjwMIg,8090
|
|
165
165
|
bl_ui/space_properties/__init__.pyi,sha256=U4lQ2UupgDfM0RBCSQrI-MlmNG2pOtBxwn5gED-7jzU,2708
|
|
166
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
166
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=lDOlRD7N0AvSTPFp-gWEB2QIMNOI5g1Dx9K7IkRbN18,55253
|
|
167
167
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=FcAaZ7hZHyyk9EmM8YuVaDZhFFafRUPbrnXftJ74xMY,1450
|
|
168
168
|
bl_ui/space_statusbar/__init__.pyi,sha256=uz_efXSX0cK9jOf_V-GCveZ1JWid8rae4wYEvLZ3QkY,613
|
|
169
169
|
bl_ui/space_text/__init__.pyi,sha256=l5CwsrWjvBl_CQQQqfjH7SbRVeAkK7z9R8UAi7GY59c,8799
|
|
@@ -210,10 +210,10 @@ bpy/ops/cachefile/__init__.pyi,sha256=KFndyrBJnch4nxwe_SSoBPHV5n3nxjzQki8Wcgc_R4
|
|
|
210
210
|
bpy/ops/camera/__init__.pyi,sha256=Il4dR95oos_zZb1wuj9gQ97Bfvq6rdWhf8oXBPPfc5M,1384
|
|
211
211
|
bpy/ops/clip/__init__.pyi,sha256=7jjYI07dSDylZ8XXD_o_8g4BtirZExq9-T6YFr4EwmE,44815
|
|
212
212
|
bpy/ops/cloth/__init__.pyi,sha256=-QZgZVWwhhr7uTvjCQIrSTaLo5oa6vAUkL50wz6JnKk,629
|
|
213
|
-
bpy/ops/collection/__init__.pyi,sha256=
|
|
213
|
+
bpy/ops/collection/__init__.pyi,sha256=z2rWoNxbdj4xFqPlItbIi2l57eHlarU6RnUM0zjI-FQ,3212
|
|
214
214
|
bpy/ops/console/__init__.pyi,sha256=lgoYIWzf29q06AniBBiPYuI7zndNoc2aGyXYyINZbPI,7304
|
|
215
215
|
bpy/ops/constraint/__init__.pyi,sha256=lb318xrvDTH1T_raLhoBKcDPTl4mVmYPfh5TxbnoGDU,11838
|
|
216
|
-
bpy/ops/curve/__init__.pyi,sha256=
|
|
216
|
+
bpy/ops/curve/__init__.pyi,sha256=eO5HeAhCijFOcq-V8WBJVig7VkKmt1QQqiuVijIfueQ,28585
|
|
217
217
|
bpy/ops/curves/__init__.pyi,sha256=c2qqV_FWtUG5wRnYQ-389Wp417M6KKXCQK6q7l5Qbuc,15074
|
|
218
218
|
bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1739
|
|
219
219
|
bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
|
|
@@ -229,7 +229,7 @@ bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9t
|
|
|
229
229
|
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
230
230
|
bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
|
|
231
231
|
bpy/ops/grease_pencil/__init__.pyi,sha256=H9WVzX5b9L_OB0KW1repZrTZ_NrZ-1Xj9pnZgdvtMX4,61294
|
|
232
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
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
|
|
235
235
|
bpy/ops/import_scene/__init__.pyi,sha256=-DCT923onVq2BOas29bCrybOE9qJN-1j7KTUhGQ81CM,10282
|
|
@@ -242,7 +242,7 @@ bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,41
|
|
|
242
242
|
bpy/ops/mesh/__init__.pyi,sha256=qE1RpDdjx6k30pAjr1ZWqjR4aoY6_qJ8VVyQk0F8GPA,132596
|
|
243
243
|
bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
|
|
244
244
|
bpy/ops/node/__init__.pyi,sha256=f-sZY8A2OnvpTVF-fQd_Dk7qZFz9osDrjv-vf4aft6Q,52024
|
|
245
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
245
|
+
bpy/ops/object/__init__.pyi,sha256=r-chJkYsfu2ZUp4KBcamnBl7Od4_LW5zJ76e45lc8u0,168021
|
|
246
246
|
bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
|
|
247
247
|
bpy/ops/paint/__init__.pyi,sha256=e-oY3Tfshra13yecq4RnWCHs7AfGJIrZvGUD1xV9RGo,37153
|
|
248
248
|
bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
|
|
@@ -277,7 +277,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
|
|
|
277
277
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
278
278
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
279
279
|
bpy/props/__init__.pyi,sha256=rxpq9_AeVaMNXJ1MBAowRzLYjBzsYxNx5Ox5qWLLu5w,35255
|
|
280
|
-
bpy/types/__init__.pyi,sha256=
|
|
280
|
+
bpy/types/__init__.pyi,sha256=D519BiEBQFq6LF5Ccmj_HmHi6Fhi5bZv1HIT6WElN_g,5421400
|
|
281
281
|
bpy/utils/__init__.pyi,sha256=LBKZscVUnS43O9AFmDZrJA1hBxJE3AFAY9d5SCWdKyU,14403
|
|
282
282
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
283
283
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
@@ -312,7 +312,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
|
|
|
312
312
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
313
313
|
freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
|
|
314
314
|
freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
|
|
315
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
315
|
+
freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
|
|
316
316
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
|
|
317
317
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
318
318
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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=t-kFLEyZ0OABqt8VbtSwvo60S7vw15Tq5HRea-G3odE,1278
|
|
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-20250116.dist-info/METADATA,sha256=F0l0adGumJiXLjJol7gAvWHWNQhBGRmz_P6RGXvs9l0,7289
|
|
363
|
+
fake_bpy_module-20250116.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
364
|
+
fake_bpy_module-20250116.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20250116.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bgl
|
|
4
5
|
import gpu.types
|
|
5
6
|
|
|
6
7
|
def batch_for_shader(
|
|
@@ -8,7 +9,7 @@ def batch_for_shader(
|
|
|
8
9
|
type: str,
|
|
9
10
|
content: dict[
|
|
10
11
|
str,
|
|
11
|
-
|
|
12
|
+
bgl.Buffer
|
|
12
13
|
| collections.abc.Sequence[float]
|
|
13
14
|
| collections.abc.Sequence[int]
|
|
14
15
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -25,7 +26,7 @@ def batch_for_shader(
|
|
|
25
26
|
:type type: str
|
|
26
27
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
27
28
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
28
|
-
:type content: dict[str,
|
|
29
|
+
:type content: dict[str, bgl.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
29
30
|
:return: compatible batch
|
|
30
31
|
:rtype: gpu.types.GPUBatch
|
|
31
32
|
"""
|
|
File without changes
|
|
File without changes
|