fake-bpy-module 20240811__py3-none-any.whl → 20240812__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/types/__init__.pyi +32 -30
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240812.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240812.dist-info}/RECORD +5 -5
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240812.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240812.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -115169,16 +115169,16 @@ class Bone(bpy_struct):
|
|
|
115169
115169
|
:type: float
|
|
115170
115170
|
"""
|
|
115171
115171
|
|
|
115172
|
-
bbone_custom_handle_end: typing_extensions.Self
|
|
115172
|
+
bbone_custom_handle_end: typing_extensions.Self | None
|
|
115173
115173
|
""" Bone that serves as the end handle for the B-Bone curve
|
|
115174
115174
|
|
|
115175
|
-
:type: typing_extensions.Self
|
|
115175
|
+
:type: typing_extensions.Self | None
|
|
115176
115176
|
"""
|
|
115177
115177
|
|
|
115178
|
-
bbone_custom_handle_start: typing_extensions.Self
|
|
115178
|
+
bbone_custom_handle_start: typing_extensions.Self | None
|
|
115179
115179
|
""" Bone that serves as the start handle for the B-Bone curve
|
|
115180
115180
|
|
|
115181
|
-
:type: typing_extensions.Self
|
|
115181
|
+
:type: typing_extensions.Self | None
|
|
115182
115182
|
"""
|
|
115183
115183
|
|
|
115184
115184
|
bbone_easein: float
|
|
@@ -115709,10 +115709,10 @@ class BoneCollection(bpy_struct):
|
|
|
115709
115709
|
:type: str
|
|
115710
115710
|
"""
|
|
115711
115711
|
|
|
115712
|
-
parent: typing_extensions.Self
|
|
115712
|
+
parent: typing_extensions.Self | None
|
|
115713
115713
|
""" Parent bone collection. Note that accessing this requires a scan of all the bone collections to find the parent.
|
|
115714
115714
|
|
|
115715
|
-
:type: typing_extensions.Self
|
|
115715
|
+
:type: typing_extensions.Self | None
|
|
115716
115716
|
"""
|
|
115717
115717
|
|
|
115718
115718
|
bones_recursive: typing.Any
|
|
@@ -134692,16 +134692,16 @@ class EditBone(bpy_struct):
|
|
|
134692
134692
|
:type: float
|
|
134693
134693
|
"""
|
|
134694
134694
|
|
|
134695
|
-
bbone_custom_handle_end: typing_extensions.Self
|
|
134695
|
+
bbone_custom_handle_end: typing_extensions.Self | None
|
|
134696
134696
|
""" Bone that serves as the end handle for the B-Bone curve
|
|
134697
134697
|
|
|
134698
|
-
:type: typing_extensions.Self
|
|
134698
|
+
:type: typing_extensions.Self | None
|
|
134699
134699
|
"""
|
|
134700
134700
|
|
|
134701
|
-
bbone_custom_handle_start: typing_extensions.Self
|
|
134701
|
+
bbone_custom_handle_start: typing_extensions.Self | None
|
|
134702
134702
|
""" Bone that serves as the start handle for the B-Bone curve
|
|
134703
134703
|
|
|
134704
|
-
:type: typing_extensions.Self
|
|
134704
|
+
:type: typing_extensions.Self | None
|
|
134705
134705
|
"""
|
|
134706
134706
|
|
|
134707
134707
|
bbone_easein: float
|
|
@@ -134880,10 +134880,10 @@ class EditBone(bpy_struct):
|
|
|
134880
134880
|
:type: str
|
|
134881
134881
|
"""
|
|
134882
134882
|
|
|
134883
|
-
parent: typing_extensions.Self
|
|
134883
|
+
parent: typing_extensions.Self | None
|
|
134884
134884
|
""" Parent edit bone (in same Armature)
|
|
134885
134885
|
|
|
134886
|
-
:type: typing_extensions.Self
|
|
134886
|
+
:type: typing_extensions.Self | None
|
|
134887
134887
|
"""
|
|
134888
134888
|
|
|
134889
134889
|
roll: float
|
|
@@ -164544,7 +164544,7 @@ class ID(bpy_struct):
|
|
|
164544
164544
|
self,
|
|
164545
164545
|
scene: Scene,
|
|
164546
164546
|
view_layer: ViewLayer,
|
|
164547
|
-
reference: typing_extensions.Self = None,
|
|
164547
|
+
reference: typing_extensions.Self | None = None,
|
|
164548
164548
|
do_fully_editable: bool | None = False,
|
|
164549
164549
|
) -> typing_extensions.Self:
|
|
164550
164550
|
"""Create an overridden local copy of this linked data-block, and most of its dependencies when it is a Collection or and Object
|
|
@@ -164554,7 +164554,7 @@ class ID(bpy_struct):
|
|
|
164554
164554
|
:param view_layer: In which view layer the new overrides should be instantiated
|
|
164555
164555
|
:type view_layer: ViewLayer
|
|
164556
164556
|
:param reference: Another ID (usually an Object or Collection) used as a hint to decide where to instantiate the new overrides
|
|
164557
|
-
:type reference: typing_extensions.Self
|
|
164557
|
+
:type reference: typing_extensions.Self | None
|
|
164558
164558
|
:param do_fully_editable: Make all library overrides generated by this call fully editable by the user (none will be 'system overrides')
|
|
164559
164559
|
:type do_fully_editable: bool | None
|
|
164560
164560
|
:return: New overridden local copy of the root ID
|
|
@@ -167701,11 +167701,11 @@ class KeyMapItem(bpy_struct):
|
|
|
167701
167701
|
:type: typing.Literal['ANY', 'PRESS', 'RELEASE', 'CLICK', 'DOUBLE_CLICK', 'CLICK_DRAG', 'NOTHING']
|
|
167702
167702
|
"""
|
|
167703
167703
|
|
|
167704
|
-
def compare(self, item: typing_extensions.Self) -> bool:
|
|
167704
|
+
def compare(self, item: typing_extensions.Self | None) -> bool:
|
|
167705
167705
|
"""compare
|
|
167706
167706
|
|
|
167707
167707
|
:param item: Item
|
|
167708
|
-
:type item: typing_extensions.Self
|
|
167708
|
+
:type item: typing_extensions.Self | None
|
|
167709
167709
|
:return: Comparison result
|
|
167710
167710
|
:rtype: bool
|
|
167711
167711
|
"""
|
|
@@ -176338,10 +176338,10 @@ class Mesh(ID, bpy_struct):
|
|
|
176338
176338
|
:type: bpy_prop_collection[MeshSkinVertexLayer]
|
|
176339
176339
|
"""
|
|
176340
176340
|
|
|
176341
|
-
texco_mesh: typing_extensions.Self
|
|
176341
|
+
texco_mesh: typing_extensions.Self | None
|
|
176342
176342
|
""" Derive texture coordinates from another mesh
|
|
176343
176343
|
|
|
176344
|
-
:type: typing_extensions.Self
|
|
176344
|
+
:type: typing_extensions.Self | None
|
|
176345
176345
|
"""
|
|
176346
176346
|
|
|
176347
176347
|
texspace_location: mathutils.Vector
|
|
@@ -176356,10 +176356,10 @@ class Mesh(ID, bpy_struct):
|
|
|
176356
176356
|
:type: mathutils.Vector
|
|
176357
176357
|
"""
|
|
176358
176358
|
|
|
176359
|
-
texture_mesh: typing_extensions.Self
|
|
176359
|
+
texture_mesh: typing_extensions.Self | None
|
|
176360
176360
|
""" Use another mesh for texture indices (vertex indices must be aligned)
|
|
176361
176361
|
|
|
176362
|
-
:type: typing_extensions.Self
|
|
176362
|
+
:type: typing_extensions.Self | None
|
|
176363
176363
|
"""
|
|
176364
176364
|
|
|
176365
176365
|
total_edge_sel: int
|
|
@@ -176614,12 +176614,14 @@ class Mesh(ID, bpy_struct):
|
|
|
176614
176614
|
...
|
|
176615
176615
|
|
|
176616
176616
|
def unit_test_compare(
|
|
176617
|
-
self,
|
|
176617
|
+
self,
|
|
176618
|
+
mesh: typing_extensions.Self | None = None,
|
|
176619
|
+
threshold: float | None = 7.1526e-06,
|
|
176618
176620
|
) -> str:
|
|
176619
176621
|
"""unit_test_compare
|
|
176620
176622
|
|
|
176621
176623
|
:param mesh: Mesh to compare to
|
|
176622
|
-
:type mesh: typing_extensions.Self
|
|
176624
|
+
:type mesh: typing_extensions.Self | None
|
|
176623
176625
|
:param threshold: Threshold, Comparison tolerance threshold
|
|
176624
176626
|
:type threshold: float | None
|
|
176625
176627
|
:return: Return value, String description of result of comparison
|
|
@@ -182223,10 +182225,10 @@ class Node(bpy_struct):
|
|
|
182223
182225
|
:type: NodeOutputs
|
|
182224
182226
|
"""
|
|
182225
182227
|
|
|
182226
|
-
parent: typing_extensions.Self
|
|
182228
|
+
parent: typing_extensions.Self | None
|
|
182227
182229
|
""" Parent this node is attached to
|
|
182228
182230
|
|
|
182229
|
-
:type: typing_extensions.Self
|
|
182231
|
+
:type: typing_extensions.Self | None
|
|
182230
182232
|
"""
|
|
182231
182233
|
|
|
182232
182234
|
select: bool
|
|
@@ -189850,10 +189852,10 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
189850
189852
|
:type: MotionPath
|
|
189851
189853
|
"""
|
|
189852
189854
|
|
|
189853
|
-
parent: typing_extensions.Self
|
|
189855
|
+
parent: typing_extensions.Self | None
|
|
189854
189856
|
""" Parent object
|
|
189855
189857
|
|
|
189856
|
-
:type: typing_extensions.Self
|
|
189858
|
+
:type: typing_extensions.Self | None
|
|
189857
189859
|
"""
|
|
189858
189860
|
|
|
189859
189861
|
parent_bone: str
|
|
@@ -195816,10 +195818,10 @@ class PoseBone(bpy_struct):
|
|
|
195816
195818
|
:type: mathutils.Vector
|
|
195817
195819
|
"""
|
|
195818
195820
|
|
|
195819
|
-
custom_shape_transform: typing_extensions.Self
|
|
195821
|
+
custom_shape_transform: typing_extensions.Self | None
|
|
195820
195822
|
""" Bone that defines the display transform of this custom shape
|
|
195821
195823
|
|
|
195822
|
-
:type: typing_extensions.Self
|
|
195824
|
+
:type: typing_extensions.Self | None
|
|
195823
195825
|
"""
|
|
195824
195826
|
|
|
195825
195827
|
custom_shape_translation: mathutils.Vector
|
|
@@ -203115,10 +203117,10 @@ class Scene(ID, bpy_struct):
|
|
|
203115
203117
|
:type: float
|
|
203116
203118
|
"""
|
|
203117
203119
|
|
|
203118
|
-
background_set: typing_extensions.Self
|
|
203120
|
+
background_set: typing_extensions.Self | None
|
|
203119
203121
|
""" Background set scene
|
|
203120
203122
|
|
|
203121
|
-
:type: typing_extensions.Self
|
|
203123
|
+
:type: typing_extensions.Self | None
|
|
203122
203124
|
"""
|
|
203123
203125
|
|
|
203124
203126
|
camera: Object | None
|
|
@@ -272,7 +272,7 @@ bpy/ops/workspace/__init__.pyi,sha256=OSELKT_HUs2W6cOk2wOigZgkbieGezMVWTi45f4x-I
|
|
|
272
272
|
bpy/ops/world/__init__.pyi,sha256=_z3cX9CYV0nTmSiSQcC82nRiXYriWMcHomfxmSl2GxM,1057
|
|
273
273
|
bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
|
|
274
274
|
bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
|
|
275
|
-
bpy/types/__init__.pyi,sha256=
|
|
275
|
+
bpy/types/__init__.pyi,sha256=7fi1CQa-vWJYLFGaLHpbcrTTnSXOWXJoNM2WXpS7rLo,6309317
|
|
276
276
|
bpy/utils/__init__.pyi,sha256=fuZc6nInRbbso-qzaeNWGfipuB37ySvxZVrJcEJ-RxM,13280
|
|
277
277
|
bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
|
|
278
278
|
bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
|
|
@@ -356,7 +356,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
|
356
356
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
357
|
sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
|
|
358
358
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
-
fake_bpy_module-
|
|
360
|
-
fake_bpy_module-
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
359
|
+
fake_bpy_module-20240812.dist-info/METADATA,sha256=tZ8rnbE1wcfsbvSKdn5BbZkQPb3zKGaSysv8zTqJEY0,7289
|
|
360
|
+
fake_bpy_module-20240812.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
361
|
+
fake_bpy_module-20240812.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
362
|
+
fake_bpy_module-20240812.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|