fake-bpy-module 20250502__py3-none-any.whl → 20250503__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/ops/export_scene/__init__.pyi +6 -2
- bpy/ops/import_scene/__init__.pyi +6 -0
- bpy/types/__init__.pyi +139 -58
- {fake_bpy_module-20250502.dist-info → fake_bpy_module-20250503.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250502.dist-info → fake_bpy_module-20250503.dist-info}/RECORD +9 -9
- {fake_bpy_module-20250502.dist-info → fake_bpy_module-20250503.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20250502.dist-info → fake_bpy_module-20250503.dist-info}/top_level.txt +0 -0
|
@@ -291,7 +291,8 @@ def gltf(
|
|
|
291
291
|
export_draco_color_quantization: int | None = 10,
|
|
292
292
|
export_draco_generic_quantization: int | None = 12,
|
|
293
293
|
export_tangents: bool | None = False,
|
|
294
|
-
export_materials: typing.Literal["EXPORT", "PLACEHOLDER", "
|
|
294
|
+
export_materials: typing.Literal["EXPORT", "PLACEHOLDER", "VIEWPORT", "NONE"]
|
|
295
|
+
| None = "EXPORT",
|
|
295
296
|
export_unused_images: bool | None = False,
|
|
296
297
|
export_unused_textures: bool | None = False,
|
|
297
298
|
export_vertex_color: typing.Literal["MATERIAL", "ACTIVE", "NAME", "NONE"]
|
|
@@ -498,9 +499,12 @@ def gltf(
|
|
|
498
499
|
PLACEHOLDER
|
|
499
500
|
Placeholder -- Do not export materials, but write multiple primitive groups per mesh, keeping material slot information.
|
|
500
501
|
|
|
502
|
+
VIEWPORT
|
|
503
|
+
Viewport -- Export minimal materials as defined in Viewport display properties.
|
|
504
|
+
|
|
501
505
|
NONE
|
|
502
506
|
No export -- Do not export materials, and combine mesh primitive groups, losing material slot information.
|
|
503
|
-
:type export_materials: typing.Literal['EXPORT','PLACEHOLDER','NONE'] | None
|
|
507
|
+
:type export_materials: typing.Literal['EXPORT','PLACEHOLDER','VIEWPORT','NONE'] | None
|
|
504
508
|
:param export_unused_images: Unused Images, Export images not assigned to any material
|
|
505
509
|
:type export_unused_images: bool | None
|
|
506
510
|
:param export_unused_textures: Prepare Unused Textures, Export image texture nodes not assigned to any material. This feature is not standard and needs an external extension to be included in the glTF file
|
|
@@ -131,8 +131,10 @@ def gltf(
|
|
|
131
131
|
bone_shape_scale_factor: float | None = 1.0,
|
|
132
132
|
guess_original_bind_pose: bool | None = True,
|
|
133
133
|
import_webp_texture: bool | None = False,
|
|
134
|
+
import_unused_materials: bool | None = False,
|
|
134
135
|
import_select_created_objects: bool | None = True,
|
|
135
136
|
import_scene_extras: bool | None = True,
|
|
137
|
+
import_scene_as_collection: bool | None = True,
|
|
136
138
|
):
|
|
137
139
|
"""Load a glTF 2.0 file
|
|
138
140
|
|
|
@@ -182,8 +184,12 @@ def gltf(
|
|
|
182
184
|
:type guess_original_bind_pose: bool | None
|
|
183
185
|
:param import_webp_texture: Import WebP Textures, If a texture exists in WebP format, loads the WebP texture instead of the fallback PNG/JPEG one
|
|
184
186
|
:type import_webp_texture: bool | None
|
|
187
|
+
:param import_unused_materials: Import Unused Materials & Images, Import materials & Images not assigned to any mesh
|
|
188
|
+
:type import_unused_materials: bool | None
|
|
185
189
|
:param import_select_created_objects: Select Imported Objects, Select created objects at the end of the import
|
|
186
190
|
:type import_select_created_objects: bool | None
|
|
187
191
|
:param import_scene_extras: Import Scene Extras, Import scene extras as custom properties. Existing custom properties will be overwritten
|
|
188
192
|
:type import_scene_extras: bool | None
|
|
193
|
+
:param import_scene_as_collection: Import Scene as Collection, Import the scene as a collection
|
|
194
|
+
:type import_scene_as_collection: bool | None
|
|
189
195
|
"""
|
bpy/types/__init__.pyi
CHANGED
|
@@ -122066,11 +122066,17 @@ class BlendTexture(Texture, ID, bpy_struct):
|
|
|
122066
122066
|
:type: typing.Literal['HORIZONTAL','VERTICAL']
|
|
122067
122067
|
"""
|
|
122068
122068
|
|
|
122069
|
-
users_material:
|
|
122070
|
-
""" Materials that use this texture(readonly)
|
|
122069
|
+
users_material: tuple[Material, ...]
|
|
122070
|
+
""" Materials that use this texture(readonly)
|
|
122071
122071
|
|
|
122072
|
-
|
|
122073
|
-
"""
|
|
122072
|
+
:type: tuple[Material, ...]
|
|
122073
|
+
"""
|
|
122074
|
+
|
|
122075
|
+
users_object_modifier: tuple[Object, ...]
|
|
122076
|
+
""" Object modifiers that use this texture(readonly)
|
|
122077
|
+
|
|
122078
|
+
:type: tuple[Object, ...]
|
|
122079
|
+
"""
|
|
122074
122080
|
|
|
122075
122081
|
@classmethod
|
|
122076
122082
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -128013,11 +128019,17 @@ class CloudsTexture(Texture, ID, bpy_struct):
|
|
|
128013
128019
|
:type: typing.Literal['SOFT_NOISE','HARD_NOISE']
|
|
128014
128020
|
"""
|
|
128015
128021
|
|
|
128016
|
-
users_material:
|
|
128017
|
-
""" Materials that use this texture(readonly)
|
|
128022
|
+
users_material: tuple[Material, ...]
|
|
128023
|
+
""" Materials that use this texture(readonly)
|
|
128018
128024
|
|
|
128019
|
-
|
|
128020
|
-
"""
|
|
128025
|
+
:type: tuple[Material, ...]
|
|
128026
|
+
"""
|
|
128027
|
+
|
|
128028
|
+
users_object_modifier: tuple[Object, ...]
|
|
128029
|
+
""" Object modifiers that use this texture(readonly)
|
|
128030
|
+
|
|
128031
|
+
:type: tuple[Object, ...]
|
|
128032
|
+
"""
|
|
128021
128033
|
|
|
128022
128034
|
@classmethod
|
|
128023
128035
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -128153,11 +128165,17 @@ class Collection(ID, bpy_struct):
|
|
|
128153
128165
|
:type: bool
|
|
128154
128166
|
"""
|
|
128155
128167
|
|
|
128156
|
-
children_recursive:
|
|
128157
|
-
""" A list of all children from this collection.(readonly)
|
|
128168
|
+
children_recursive: list[Collection]
|
|
128169
|
+
""" A list of all children from this collection.(readonly)
|
|
128158
128170
|
|
|
128159
|
-
|
|
128160
|
-
"""
|
|
128171
|
+
:type: list[Collection]
|
|
128172
|
+
"""
|
|
128173
|
+
|
|
128174
|
+
users_dupli_group: tuple[Object, ...]
|
|
128175
|
+
""" The collection instance objects this collection is used in(readonly)
|
|
128176
|
+
|
|
128177
|
+
:type: tuple[Object, ...]
|
|
128178
|
+
"""
|
|
128161
128179
|
|
|
128162
128180
|
@classmethod
|
|
128163
128181
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -130739,7 +130757,7 @@ class CompositorNodeComposite(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
130739
130757
|
"""Final render output"""
|
|
130740
130758
|
|
|
130741
130759
|
use_alpha: bool
|
|
130742
|
-
""" Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1)
|
|
130760
|
+
""" Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1). (Deprecated: Unused.)
|
|
130743
130761
|
|
|
130744
130762
|
:type: bool
|
|
130745
130763
|
"""
|
|
@@ -136396,7 +136414,7 @@ class CompositorNodeViewer(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
136396
136414
|
"""
|
|
136397
136415
|
|
|
136398
136416
|
use_alpha: bool
|
|
136399
|
-
""" Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1)
|
|
136417
|
+
""" Colors are treated alpha premultiplied, or colors output straight (alpha gets set to 1). (Deprecated: Unused.)
|
|
136400
136418
|
|
|
136401
136419
|
:type: bool
|
|
136402
136420
|
"""
|
|
@@ -140019,11 +140037,17 @@ class DistortedNoiseTexture(Texture, ID, bpy_struct):
|
|
|
140019
140037
|
:type: float
|
|
140020
140038
|
"""
|
|
140021
140039
|
|
|
140022
|
-
users_material:
|
|
140023
|
-
""" Materials that use this texture(readonly)
|
|
140040
|
+
users_material: tuple[Material, ...]
|
|
140041
|
+
""" Materials that use this texture(readonly)
|
|
140042
|
+
|
|
140043
|
+
:type: tuple[Material, ...]
|
|
140044
|
+
"""
|
|
140024
140045
|
|
|
140025
|
-
users_object_modifier:
|
|
140026
|
-
""" Object modifiers that use this texture(readonly)
|
|
140046
|
+
users_object_modifier: tuple[Object, ...]
|
|
140047
|
+
""" Object modifiers that use this texture(readonly)
|
|
140048
|
+
|
|
140049
|
+
:type: tuple[Object, ...]
|
|
140050
|
+
"""
|
|
140027
140051
|
|
|
140028
140052
|
@classmethod
|
|
140029
140053
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -171653,11 +171677,17 @@ class ImageTexture(Texture, ID, bpy_struct):
|
|
|
171653
171677
|
:type: bool
|
|
171654
171678
|
"""
|
|
171655
171679
|
|
|
171656
|
-
users_material:
|
|
171657
|
-
""" Materials that use this texture(readonly)
|
|
171680
|
+
users_material: tuple[Material, ...]
|
|
171681
|
+
""" Materials that use this texture(readonly)
|
|
171682
|
+
|
|
171683
|
+
:type: tuple[Material, ...]
|
|
171684
|
+
"""
|
|
171658
171685
|
|
|
171659
|
-
users_object_modifier:
|
|
171660
|
-
""" Object modifiers that use this texture(readonly)
|
|
171686
|
+
users_object_modifier: tuple[Object, ...]
|
|
171687
|
+
""" Object modifiers that use this texture(readonly)
|
|
171688
|
+
|
|
171689
|
+
:type: tuple[Object, ...]
|
|
171690
|
+
"""
|
|
171661
171691
|
|
|
171662
171692
|
@classmethod
|
|
171663
171693
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -173614,8 +173644,11 @@ class Library(ID, bpy_struct):
|
|
|
173614
173644
|
:type: bpy_prop_array[int]
|
|
173615
173645
|
"""
|
|
173616
173646
|
|
|
173617
|
-
users_id:
|
|
173618
|
-
""" ID data
|
|
173647
|
+
users_id: tuple[ID, ...]
|
|
173648
|
+
""" ID data-blocks that use this library(readonly)
|
|
173649
|
+
|
|
173650
|
+
:type: tuple[ID, ...]
|
|
173651
|
+
"""
|
|
173619
173652
|
|
|
173620
173653
|
def reload(self):
|
|
173621
173654
|
"""Reload this library and all its linked data-blocks"""
|
|
@@ -178521,11 +178554,17 @@ class MagicTexture(Texture, ID, bpy_struct):
|
|
|
178521
178554
|
:type: float
|
|
178522
178555
|
"""
|
|
178523
178556
|
|
|
178524
|
-
users_material:
|
|
178525
|
-
""" Materials that use this texture(readonly)
|
|
178557
|
+
users_material: tuple[Material, ...]
|
|
178558
|
+
""" Materials that use this texture(readonly)
|
|
178559
|
+
|
|
178560
|
+
:type: tuple[Material, ...]
|
|
178561
|
+
"""
|
|
178562
|
+
|
|
178563
|
+
users_object_modifier: tuple[Object, ...]
|
|
178564
|
+
""" Object modifiers that use this texture(readonly)
|
|
178526
178565
|
|
|
178527
|
-
|
|
178528
|
-
"""
|
|
178566
|
+
:type: tuple[Object, ...]
|
|
178567
|
+
"""
|
|
178529
178568
|
|
|
178530
178569
|
@classmethod
|
|
178531
178570
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -178654,11 +178693,17 @@ class MarbleTexture(Texture, ID, bpy_struct):
|
|
|
178654
178693
|
:type: float
|
|
178655
178694
|
"""
|
|
178656
178695
|
|
|
178657
|
-
users_material:
|
|
178658
|
-
""" Materials that use this texture(readonly)
|
|
178696
|
+
users_material: tuple[Material, ...]
|
|
178697
|
+
""" Materials that use this texture(readonly)
|
|
178698
|
+
|
|
178699
|
+
:type: tuple[Material, ...]
|
|
178700
|
+
"""
|
|
178701
|
+
|
|
178702
|
+
users_object_modifier: tuple[Object, ...]
|
|
178703
|
+
""" Object modifiers that use this texture(readonly)
|
|
178659
178704
|
|
|
178660
|
-
|
|
178661
|
-
"""
|
|
178705
|
+
:type: tuple[Object, ...]
|
|
178706
|
+
"""
|
|
178662
178707
|
|
|
178663
178708
|
@classmethod
|
|
178664
178709
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -184401,11 +184446,17 @@ class MusgraveTexture(Texture, ID, bpy_struct):
|
|
|
184401
184446
|
:type: float
|
|
184402
184447
|
"""
|
|
184403
184448
|
|
|
184404
|
-
users_material:
|
|
184405
|
-
""" Materials that use this texture(readonly)
|
|
184449
|
+
users_material: tuple[Material, ...]
|
|
184450
|
+
""" Materials that use this texture(readonly)
|
|
184451
|
+
|
|
184452
|
+
:type: tuple[Material, ...]
|
|
184453
|
+
"""
|
|
184406
184454
|
|
|
184407
|
-
users_object_modifier:
|
|
184408
|
-
""" Object modifiers that use this texture(readonly)
|
|
184455
|
+
users_object_modifier: tuple[Object, ...]
|
|
184456
|
+
""" Object modifiers that use this texture(readonly)
|
|
184457
|
+
|
|
184458
|
+
:type: tuple[Object, ...]
|
|
184459
|
+
"""
|
|
184409
184460
|
|
|
184410
184461
|
@classmethod
|
|
184411
184462
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -191395,11 +191446,17 @@ class NodesModifierWarning(bpy_struct):
|
|
|
191395
191446
|
class NoiseTexture(Texture, ID, bpy_struct):
|
|
191396
191447
|
"""Procedural noise texture"""
|
|
191397
191448
|
|
|
191398
|
-
users_material:
|
|
191399
|
-
""" Materials that use this texture(readonly)
|
|
191449
|
+
users_material: tuple[Material, ...]
|
|
191450
|
+
""" Materials that use this texture(readonly)
|
|
191451
|
+
|
|
191452
|
+
:type: tuple[Material, ...]
|
|
191453
|
+
"""
|
|
191400
191454
|
|
|
191401
|
-
users_object_modifier:
|
|
191402
|
-
""" Object modifiers that use this texture(readonly)
|
|
191455
|
+
users_object_modifier: tuple[Object, ...]
|
|
191456
|
+
""" Object modifiers that use this texture(readonly)
|
|
191457
|
+
|
|
191458
|
+
:type: tuple[Object, ...]
|
|
191459
|
+
"""
|
|
191403
191460
|
|
|
191404
191461
|
@classmethod
|
|
191405
191462
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -192226,10 +192283,10 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
192226
192283
|
:type: tuple[Object, ...]
|
|
192227
192284
|
"""
|
|
192228
192285
|
|
|
192229
|
-
children_recursive:
|
|
192286
|
+
children_recursive: list[Object]
|
|
192230
192287
|
""" A list of all children from this object.(readonly)
|
|
192231
192288
|
|
|
192232
|
-
:type:
|
|
192289
|
+
:type: list[Object]
|
|
192233
192290
|
"""
|
|
192234
192291
|
|
|
192235
192292
|
users_collection: tuple[Collection, ...]
|
|
@@ -220320,11 +220377,17 @@ class StucciTexture(Texture, ID, bpy_struct):
|
|
|
220320
220377
|
:type: float
|
|
220321
220378
|
"""
|
|
220322
220379
|
|
|
220323
|
-
users_material:
|
|
220324
|
-
""" Materials that use this texture(readonly)
|
|
220380
|
+
users_material: tuple[Material, ...]
|
|
220381
|
+
""" Materials that use this texture(readonly)
|
|
220382
|
+
|
|
220383
|
+
:type: tuple[Material, ...]
|
|
220384
|
+
"""
|
|
220325
220385
|
|
|
220326
|
-
users_object_modifier:
|
|
220327
|
-
""" Object modifiers that use this texture(readonly)
|
|
220386
|
+
users_object_modifier: tuple[Object, ...]
|
|
220387
|
+
""" Object modifiers that use this texture(readonly)
|
|
220388
|
+
|
|
220389
|
+
:type: tuple[Object, ...]
|
|
220390
|
+
"""
|
|
220328
220391
|
|
|
220329
220392
|
@classmethod
|
|
220330
220393
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -221814,11 +221877,17 @@ class Texture(ID, bpy_struct):
|
|
|
221814
221877
|
:type: bool
|
|
221815
221878
|
"""
|
|
221816
221879
|
|
|
221817
|
-
users_material:
|
|
221818
|
-
""" Materials that use this texture(readonly)
|
|
221880
|
+
users_material: tuple[Material, ...]
|
|
221881
|
+
""" Materials that use this texture(readonly)
|
|
221819
221882
|
|
|
221820
|
-
|
|
221821
|
-
"""
|
|
221883
|
+
:type: tuple[Material, ...]
|
|
221884
|
+
"""
|
|
221885
|
+
|
|
221886
|
+
users_object_modifier: tuple[Object, ...]
|
|
221887
|
+
""" Object modifiers that use this texture(readonly)
|
|
221888
|
+
|
|
221889
|
+
:type: tuple[Object, ...]
|
|
221890
|
+
"""
|
|
221822
221891
|
|
|
221823
221892
|
def evaluate(
|
|
221824
221893
|
self, value: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
@@ -236024,11 +236093,17 @@ class VoronoiTexture(Texture, ID, bpy_struct):
|
|
|
236024
236093
|
:type: float
|
|
236025
236094
|
"""
|
|
236026
236095
|
|
|
236027
|
-
users_material:
|
|
236028
|
-
""" Materials that use this texture(readonly)
|
|
236096
|
+
users_material: tuple[Material, ...]
|
|
236097
|
+
""" Materials that use this texture(readonly)
|
|
236098
|
+
|
|
236099
|
+
:type: tuple[Material, ...]
|
|
236100
|
+
"""
|
|
236029
236101
|
|
|
236030
|
-
users_object_modifier:
|
|
236031
|
-
""" Object modifiers that use this texture(readonly)
|
|
236102
|
+
users_object_modifier: tuple[Object, ...]
|
|
236103
|
+
""" Object modifiers that use this texture(readonly)
|
|
236104
|
+
|
|
236105
|
+
:type: tuple[Object, ...]
|
|
236106
|
+
"""
|
|
236032
236107
|
|
|
236033
236108
|
@classmethod
|
|
236034
236109
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -237497,11 +237572,17 @@ class WoodTexture(Texture, ID, bpy_struct):
|
|
|
237497
237572
|
:type: typing.Literal['BANDS','RINGS','BANDNOISE','RINGNOISE']
|
|
237498
237573
|
"""
|
|
237499
237574
|
|
|
237500
|
-
users_material:
|
|
237501
|
-
""" Materials that use this texture(readonly)
|
|
237575
|
+
users_material: tuple[Material, ...]
|
|
237576
|
+
""" Materials that use this texture(readonly)
|
|
237577
|
+
|
|
237578
|
+
:type: tuple[Material, ...]
|
|
237579
|
+
"""
|
|
237580
|
+
|
|
237581
|
+
users_object_modifier: tuple[Object, ...]
|
|
237582
|
+
""" Object modifiers that use this texture(readonly)
|
|
237502
237583
|
|
|
237503
|
-
|
|
237504
|
-
"""
|
|
237584
|
+
:type: tuple[Object, ...]
|
|
237585
|
+
"""
|
|
237505
237586
|
|
|
237506
237587
|
@classmethod
|
|
237507
237588
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -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=5gnAaKEPBw_7vM2XiCNpKjAbCsXP-0hF4OJso4-elDA,40577
|
|
224
224
|
bpy/ops/extensions/__init__.pyi,sha256=9L0hxUtZuQoelKZWm8KxnOXP_D9GlK4anzAcHDFZOCw,12503
|
|
225
225
|
bpy/ops/file/__init__.pyi,sha256=RcQ7PXPKaFvA5XNsUbGrovqFjvjlvJ3LsEdp8k9MkCM,19287
|
|
226
226
|
bpy/ops/fluid/__init__.pyi,sha256=lJDfm8cfRkm9S42vutMzeAeZBezIPIheRrMVaYpr4cY,3218
|
|
@@ -233,7 +233,7 @@ bpy/ops/grease_pencil/__init__.pyi,sha256=i2YanaDA0kzc5vCXupQ7V1bW0MMKpfoL4fXVE2
|
|
|
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
|
|
236
|
-
bpy/ops/import_scene/__init__.pyi,sha256=
|
|
236
|
+
bpy/ops/import_scene/__init__.pyi,sha256=q3qWtOyLuKSV3DvlpsgRkeSvLylvHUtqMwvR70eKbfw,10745
|
|
237
237
|
bpy/ops/info/__init__.pyi,sha256=QtQXU2Ik1oPvylqz_Yzwgl8ZXdb6WTHBykyfuohoASw,3117
|
|
238
238
|
bpy/ops/lattice/__init__.pyi,sha256=euuQEIeUigpNjo0boVKO5q6A5byqBDe-s-hutflsDbg,3606
|
|
239
239
|
bpy/ops/marker/__init__.pyi,sha256=enjr5gKs8BHGiz8vFW4xNK6CA-WJJI_FgF3sRdAUzLA,5403
|
|
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuN
|
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
281
281
|
bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=X0upls2ta_qZKo-zqw4zY9Pq127wkxRgBEQN1hiDUyg,5599453
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=Pji8UKqvI3AJTk5v3nCK92URlJfehxuoaaJW6n9L7XU,2342
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
|
|
|
314
314
|
freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
|
|
315
315
|
freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
|
|
316
316
|
freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
|
|
317
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
317
|
+
freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -328,7 +328,7 @@ gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
|
|
|
328
328
|
gpu/types/__init__.pyi,sha256=9wnXX8CdoIPTRMxWLEEiwmDi8Xj0-_lovIxRZ5BEKaM,29330
|
|
329
329
|
gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
|
|
330
330
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
331
|
+
gpu_extras/batch/__init__.pyi,sha256=P0KwOXu_4yBZvCupG7WJ08TQ6yvocr5NZLAhJK_qLtQ,1305
|
|
332
332
|
gpu_extras/presets/__init__.pyi,sha256=9MrG1r0CUOxBYWyp_vZSYxs47oElIxca1uMyuFPLKdw,1674
|
|
333
333
|
graphviz_export/__init__.pyi,sha256=_breciGLRC6qTh-HOor-Ufn_fI5HXnoQego6mmvTAIQ,242
|
|
334
334
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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-20250503.dist-info/METADATA,sha256=dMZKMlIMQN8oTnEg-1qZESpPgZPOQbZetpV_o3sR0mo,7429
|
|
365
|
+
fake_bpy_module-20250503.dist-info/WHEEL,sha256=7ciDxtlje1X8OhobNuGgi1t-ACdFSelPnSmDPrtlobY,91
|
|
366
|
+
fake_bpy_module-20250503.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250503.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it): ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import bgl
|
|
5
6
|
import gpu.types
|
|
6
7
|
|
|
7
8
|
def batch_for_shader(
|
|
@@ -9,7 +10,7 @@ def batch_for_shader(
|
|
|
9
10
|
type: str,
|
|
10
11
|
content: dict[
|
|
11
12
|
str,
|
|
12
|
-
|
|
13
|
+
bgl.Buffer
|
|
13
14
|
| collections.abc.Sequence[float]
|
|
14
15
|
| collections.abc.Sequence[int]
|
|
15
16
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -26,7 +27,7 @@ def batch_for_shader(
|
|
|
26
27
|
:type type: str
|
|
27
28
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
28
29
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
29
|
-
:type content: dict[str,
|
|
30
|
+
: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]]]
|
|
30
31
|
:return: compatible batch
|
|
31
32
|
:rtype: gpu.types.GPUBatch
|
|
32
33
|
"""
|
|
File without changes
|