fake-bpy-module-latest 20260115__py3-none-any.whl → 20260116__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.
- _bpy_internal/__init__.pyi +1 -1
- _bpy_internal/platform/__init__.pyi +5 -0
- bl_ui/generic_ui_list/__init__.pyi +1 -1
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +254 -1
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260116.dist-info}/METADATA +1 -1
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260116.dist-info}/RECORD +11 -10
- mathutils/bvhtree/__init__.pyi +2 -1
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260116.dist-info}/WHEEL +0 -0
- {fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260116.dist-info}/top_level.txt +0 -0
_bpy_internal/__init__.pyi
CHANGED
|
@@ -6,6 +6,6 @@ from . import addons as addons
|
|
|
6
6
|
from . import assets as assets
|
|
7
7
|
from . import disk_file_hash_service as disk_file_hash_service
|
|
8
8
|
from . import extensions as extensions
|
|
9
|
-
from . import freedesktop as freedesktop
|
|
10
9
|
from . import grease_pencil as grease_pencil
|
|
10
|
+
from . import platform as platform
|
|
11
11
|
from . import system_info as system_info
|
|
@@ -114,7 +114,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
|
|
|
114
114
|
|
|
115
115
|
def draw_ui_list(
|
|
116
116
|
layout: bpy.types.UILayout,
|
|
117
|
-
context:
|
|
117
|
+
context: _bpy_types.Context,
|
|
118
118
|
class_name: str = "UI_UL_list",
|
|
119
119
|
*,
|
|
120
120
|
unique_id: str,
|
|
@@ -2606,6 +2606,7 @@ type PropertySubtypeItems = typing.Literal[
|
|
|
2606
2606
|
"UNSIGNED", # Unsigned.
|
|
2607
2607
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2608
2608
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2609
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2609
2610
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2610
2611
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2611
2612
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|
|
@@ -2657,6 +2658,7 @@ type PropertySubtypeNumberItems = typing.Literal[
|
|
|
2657
2658
|
"UNSIGNED", # Unsigned.
|
|
2658
2659
|
"PERCENTAGE", # Percentage.A percentage between 0 and 100.
|
|
2659
2660
|
"FACTOR", # Factor.A factor between 0.0 and 1.0.
|
|
2661
|
+
"MASS", # Mass.A mass, based on scene unit settings.
|
|
2660
2662
|
"ANGLE", # Angle.A rotational value specified in radians.
|
|
2661
2663
|
"TIME", # Time (Scene Relative).Time specified in frames, converted to seconds based on scene frame rate.
|
|
2662
2664
|
"TIME_ABSOLUTE", # Time (Absolute).Time specified in seconds, independent of the scene.
|
bpy/types/__init__.pyi
CHANGED
|
@@ -7278,6 +7278,7 @@ Types with Custom Property Support <bpy_types_custom_properties>
|
|
|
7278
7278
|
* NodeTreeInterfaceSocketFloatDistance.draw
|
|
7279
7279
|
* NodeTreeInterfaceSocketFloatFactor.draw
|
|
7280
7280
|
* NodeTreeInterfaceSocketFloatFrequency.draw
|
|
7281
|
+
* NodeTreeInterfaceSocketFloatMass.draw
|
|
7281
7282
|
* NodeTreeInterfaceSocketFloatPercentage.draw
|
|
7282
7283
|
* NodeTreeInterfaceSocketFloatTime.draw
|
|
7283
7284
|
* NodeTreeInterfaceSocketFloatTimeAbsolute.draw
|
|
@@ -17592,6 +17593,8 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
17592
17593
|
* NodeTreeInterfaceSocketFloatFactor.init_socket
|
|
17593
17594
|
* NodeTreeInterfaceSocketFloatFrequency.from_socket
|
|
17594
17595
|
* NodeTreeInterfaceSocketFloatFrequency.init_socket
|
|
17596
|
+
* NodeTreeInterfaceSocketFloatMass.from_socket
|
|
17597
|
+
* NodeTreeInterfaceSocketFloatMass.init_socket
|
|
17595
17598
|
* NodeTreeInterfaceSocketFloatPercentage.from_socket
|
|
17596
17599
|
* NodeTreeInterfaceSocketFloatPercentage.init_socket
|
|
17597
17600
|
* NodeTreeInterfaceSocketFloatTime.from_socket
|
|
@@ -22483,6 +22486,80 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
22483
22486
|
:columns: 2
|
|
22484
22487
|
|
|
22485
22488
|
|
|
22489
|
+
--------------------
|
|
22490
|
+
|
|
22491
|
+
* bpy_struct.id_data
|
|
22492
|
+
* NodeSocket.name
|
|
22493
|
+
* NodeSocket.label
|
|
22494
|
+
* NodeSocket.identifier
|
|
22495
|
+
* NodeSocket.description
|
|
22496
|
+
* NodeSocket.is_output
|
|
22497
|
+
* NodeSocket.select
|
|
22498
|
+
* NodeSocket.hide
|
|
22499
|
+
* NodeSocket.enabled
|
|
22500
|
+
* NodeSocket.link_limit
|
|
22501
|
+
* NodeSocket.is_linked
|
|
22502
|
+
* NodeSocket.is_unavailable
|
|
22503
|
+
* NodeSocket.is_multi_input
|
|
22504
|
+
* NodeSocket.show_expanded
|
|
22505
|
+
* NodeSocket.is_inactive
|
|
22506
|
+
* NodeSocket.is_icon_visible
|
|
22507
|
+
* NodeSocket.hide_value
|
|
22508
|
+
* NodeSocket.pin_gizmo
|
|
22509
|
+
* NodeSocket.node
|
|
22510
|
+
* NodeSocket.type
|
|
22511
|
+
* NodeSocket.display_shape
|
|
22512
|
+
* NodeSocket.inferred_structure_type
|
|
22513
|
+
* NodeSocket.bl_idname
|
|
22514
|
+
* NodeSocket.bl_label
|
|
22515
|
+
* NodeSocket.bl_subtype_label
|
|
22516
|
+
* NodeSocket.links
|
|
22517
|
+
* NodeSocketStandard.links
|
|
22518
|
+
|
|
22519
|
+
:columns: 2
|
|
22520
|
+
|
|
22521
|
+
|
|
22522
|
+
--------------------
|
|
22523
|
+
|
|
22524
|
+
* bpy_struct.as_pointer
|
|
22525
|
+
* bpy_struct.driver_add
|
|
22526
|
+
* bpy_struct.driver_remove
|
|
22527
|
+
* bpy_struct.get
|
|
22528
|
+
* bpy_struct.id_properties_clear
|
|
22529
|
+
* bpy_struct.id_properties_ensure
|
|
22530
|
+
* bpy_struct.id_properties_ui
|
|
22531
|
+
* bpy_struct.is_property_hidden
|
|
22532
|
+
* bpy_struct.is_property_overridable_library
|
|
22533
|
+
* bpy_struct.is_property_readonly
|
|
22534
|
+
* bpy_struct.is_property_set
|
|
22535
|
+
* bpy_struct.items
|
|
22536
|
+
* bpy_struct.keyframe_delete
|
|
22537
|
+
* bpy_struct.keyframe_insert
|
|
22538
|
+
* bpy_struct.keys
|
|
22539
|
+
* bpy_struct.path_from_id
|
|
22540
|
+
* bpy_struct.path_from_module
|
|
22541
|
+
* bpy_struct.path_resolve
|
|
22542
|
+
* bpy_struct.pop
|
|
22543
|
+
* bpy_struct.property_overridable_library_set
|
|
22544
|
+
* bpy_struct.property_unset
|
|
22545
|
+
* bpy_struct.rna_ancestors
|
|
22546
|
+
* bpy_struct.type_recast
|
|
22547
|
+
* bpy_struct.values
|
|
22548
|
+
* NodeSocket.bl_system_properties_get
|
|
22549
|
+
* NodeSocket.draw
|
|
22550
|
+
* NodeSocket.draw_color
|
|
22551
|
+
* NodeSocket.draw_color_simple
|
|
22552
|
+
* NodeSocket.bl_rna_get_subclass
|
|
22553
|
+
* NodeSocket.bl_rna_get_subclass_py
|
|
22554
|
+
* NodeSocketStandard.draw
|
|
22555
|
+
* NodeSocketStandard.draw_color
|
|
22556
|
+
* NodeSocketStandard.draw_color_simple
|
|
22557
|
+
* NodeSocketStandard.bl_rna_get_subclass
|
|
22558
|
+
* NodeSocketStandard.bl_rna_get_subclass_py
|
|
22559
|
+
|
|
22560
|
+
:columns: 2
|
|
22561
|
+
|
|
22562
|
+
|
|
22486
22563
|
--------------------
|
|
22487
22564
|
|
|
22488
22565
|
* bpy_struct.id_data
|
|
@@ -52538,6 +52615,7 @@ Operator.draw method for layout and display.
|
|
|
52538
52615
|
* NodeTreeInterfaceSocketFloatDistance.draw
|
|
52539
52616
|
* NodeTreeInterfaceSocketFloatFactor.draw
|
|
52540
52617
|
* NodeTreeInterfaceSocketFloatFrequency.draw
|
|
52618
|
+
* NodeTreeInterfaceSocketFloatMass.draw
|
|
52541
52619
|
* NodeTreeInterfaceSocketFloatPercentage.draw
|
|
52542
52620
|
* NodeTreeInterfaceSocketFloatTime.draw
|
|
52543
52621
|
* NodeTreeInterfaceSocketFloatTimeAbsolute.draw
|
|
@@ -63803,6 +63881,8 @@ print(positions_data)
|
|
|
63803
63881
|
* NodeTreeInterfaceSocketFloatFactor.init_socket
|
|
63804
63882
|
* NodeTreeInterfaceSocketFloatFrequency.from_socket
|
|
63805
63883
|
* NodeTreeInterfaceSocketFloatFrequency.init_socket
|
|
63884
|
+
* NodeTreeInterfaceSocketFloatMass.from_socket
|
|
63885
|
+
* NodeTreeInterfaceSocketFloatMass.init_socket
|
|
63806
63886
|
* NodeTreeInterfaceSocketFloatPercentage.from_socket
|
|
63807
63887
|
* NodeTreeInterfaceSocketFloatPercentage.init_socket
|
|
63808
63888
|
* NodeTreeInterfaceSocketFloatTime.from_socket
|
|
@@ -74489,6 +74569,74 @@ To return a list of the data-blocks that are animated by a specific slot of an A
|
|
|
74489
74569
|
:columns: 2
|
|
74490
74570
|
|
|
74491
74571
|
|
|
74572
|
+
--------------------
|
|
74573
|
+
|
|
74574
|
+
* bpy_struct.id_data
|
|
74575
|
+
* NodeTreeInterfaceItem.item_type
|
|
74576
|
+
* NodeTreeInterfaceItem.parent
|
|
74577
|
+
* NodeTreeInterfaceItem.position
|
|
74578
|
+
* NodeTreeInterfaceItem.index
|
|
74579
|
+
* NodeTreeInterfaceSocket.name
|
|
74580
|
+
* NodeTreeInterfaceSocket.identifier
|
|
74581
|
+
* NodeTreeInterfaceSocket.description
|
|
74582
|
+
* NodeTreeInterfaceSocket.socket_type
|
|
74583
|
+
* NodeTreeInterfaceSocket.in_out
|
|
74584
|
+
* NodeTreeInterfaceSocket.hide_value
|
|
74585
|
+
* NodeTreeInterfaceSocket.hide_in_modifier
|
|
74586
|
+
* NodeTreeInterfaceSocket.force_non_field
|
|
74587
|
+
* NodeTreeInterfaceSocket.is_inspect_output
|
|
74588
|
+
* NodeTreeInterfaceSocket.is_panel_toggle
|
|
74589
|
+
* NodeTreeInterfaceSocket.layer_selection_field
|
|
74590
|
+
* NodeTreeInterfaceSocket.menu_expanded
|
|
74591
|
+
* NodeTreeInterfaceSocket.optional_label
|
|
74592
|
+
* NodeTreeInterfaceSocket.select
|
|
74593
|
+
* NodeTreeInterfaceSocket.attribute_domain
|
|
74594
|
+
* NodeTreeInterfaceSocket.default_attribute_name
|
|
74595
|
+
* NodeTreeInterfaceSocket.structure_type
|
|
74596
|
+
* NodeTreeInterfaceSocket.default_input
|
|
74597
|
+
* NodeTreeInterfaceSocket.bl_socket_idname
|
|
74598
|
+
|
|
74599
|
+
:columns: 2
|
|
74600
|
+
|
|
74601
|
+
|
|
74602
|
+
--------------------
|
|
74603
|
+
|
|
74604
|
+
* bpy_struct.as_pointer
|
|
74605
|
+
* bpy_struct.driver_add
|
|
74606
|
+
* bpy_struct.driver_remove
|
|
74607
|
+
* bpy_struct.get
|
|
74608
|
+
* bpy_struct.id_properties_clear
|
|
74609
|
+
* bpy_struct.id_properties_ensure
|
|
74610
|
+
* bpy_struct.id_properties_ui
|
|
74611
|
+
* bpy_struct.is_property_hidden
|
|
74612
|
+
* bpy_struct.is_property_overridable_library
|
|
74613
|
+
* bpy_struct.is_property_readonly
|
|
74614
|
+
* bpy_struct.is_property_set
|
|
74615
|
+
* bpy_struct.items
|
|
74616
|
+
* bpy_struct.keyframe_delete
|
|
74617
|
+
* bpy_struct.keyframe_insert
|
|
74618
|
+
* bpy_struct.keys
|
|
74619
|
+
* bpy_struct.path_from_id
|
|
74620
|
+
* bpy_struct.path_from_module
|
|
74621
|
+
* bpy_struct.path_resolve
|
|
74622
|
+
* bpy_struct.pop
|
|
74623
|
+
* bpy_struct.property_overridable_library_set
|
|
74624
|
+
* bpy_struct.property_unset
|
|
74625
|
+
* bpy_struct.rna_ancestors
|
|
74626
|
+
* bpy_struct.type_recast
|
|
74627
|
+
* bpy_struct.values
|
|
74628
|
+
* NodeTreeInterfaceItem.bl_rna_get_subclass
|
|
74629
|
+
* NodeTreeInterfaceItem.bl_rna_get_subclass_py
|
|
74630
|
+
* NodeTreeInterfaceSocket.bl_system_properties_get
|
|
74631
|
+
* NodeTreeInterfaceSocket.draw
|
|
74632
|
+
* NodeTreeInterfaceSocket.init_socket
|
|
74633
|
+
* NodeTreeInterfaceSocket.from_socket
|
|
74634
|
+
* NodeTreeInterfaceSocket.bl_rna_get_subclass
|
|
74635
|
+
* NodeTreeInterfaceSocket.bl_rna_get_subclass_py
|
|
74636
|
+
|
|
74637
|
+
:columns: 2
|
|
74638
|
+
|
|
74639
|
+
|
|
74492
74640
|
--------------------
|
|
74493
74641
|
|
|
74494
74642
|
* bpy_struct.id_data
|
|
@@ -176493,7 +176641,10 @@ class Mesh(ID, bpy_struct):
|
|
|
176493
176641
|
def edge_creases_remove(self) -> None: ...
|
|
176494
176642
|
def from_pydata(
|
|
176495
176643
|
self,
|
|
176496
|
-
vertices: collections.abc.Iterable[
|
|
176644
|
+
vertices: collections.abc.Iterable[
|
|
176645
|
+
collections.abc.Sequence[float] | mathutils.Vector
|
|
176646
|
+
]
|
|
176647
|
+
| None,
|
|
176497
176648
|
edges: collections.abc.Iterable[collections.abc.Sequence[int]] | None,
|
|
176498
176649
|
faces: collections.abc.Iterable[collections.abc.Sequence[int]] | None,
|
|
176499
176650
|
shade_flat=True,
|
|
@@ -181713,6 +181864,41 @@ class NodeSocketFloatFrequency(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
|
181713
181864
|
:return: The class or default when not found.
|
|
181714
181865
|
"""
|
|
181715
181866
|
|
|
181867
|
+
class NodeSocketFloatMass(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
181868
|
+
"""Floating-point number socket of a node"""
|
|
181869
|
+
|
|
181870
|
+
default_value: float
|
|
181871
|
+
links: NodeLinks | None
|
|
181872
|
+
""" List of node links from or to this socket.(readonly)"""
|
|
181873
|
+
|
|
181874
|
+
@classmethod
|
|
181875
|
+
def bl_rna_get_subclass(
|
|
181876
|
+
cls,
|
|
181877
|
+
id: str | None,
|
|
181878
|
+
default=None,
|
|
181879
|
+
/,
|
|
181880
|
+
) -> Struct:
|
|
181881
|
+
"""
|
|
181882
|
+
|
|
181883
|
+
:param id: The RNA type identifier.
|
|
181884
|
+
:param default:
|
|
181885
|
+
:return: The RNA type or default when not found.
|
|
181886
|
+
"""
|
|
181887
|
+
|
|
181888
|
+
@classmethod
|
|
181889
|
+
def bl_rna_get_subclass_py(
|
|
181890
|
+
cls,
|
|
181891
|
+
id: str | None,
|
|
181892
|
+
default=None,
|
|
181893
|
+
/,
|
|
181894
|
+
) -> typing.Any:
|
|
181895
|
+
"""
|
|
181896
|
+
|
|
181897
|
+
:param id: The RNA type identifier.
|
|
181898
|
+
:param default:
|
|
181899
|
+
:return: The class or default when not found.
|
|
181900
|
+
"""
|
|
181901
|
+
|
|
181716
181902
|
class NodeSocketFloatPercentage(NodeSocketStandard, NodeSocket, bpy_struct):
|
|
181717
181903
|
"""Floating-point number socket of a node"""
|
|
181718
181904
|
|
|
@@ -184780,6 +184966,73 @@ class NodeTreeInterfaceSocketFloatFrequency(
|
|
|
184780
184966
|
:return: The class or default when not found.
|
|
184781
184967
|
"""
|
|
184782
184968
|
|
|
184969
|
+
class NodeTreeInterfaceSocketFloatMass(
|
|
184970
|
+
NodeTreeInterfaceSocket, NodeTreeInterfaceItem, bpy_struct
|
|
184971
|
+
):
|
|
184972
|
+
"""Floating-point number socket of a node"""
|
|
184973
|
+
|
|
184974
|
+
default_value: float
|
|
184975
|
+
""" Input value used for unconnected socket"""
|
|
184976
|
+
|
|
184977
|
+
max_value: float
|
|
184978
|
+
""" Maximum value"""
|
|
184979
|
+
|
|
184980
|
+
min_value: float
|
|
184981
|
+
""" Minimum value"""
|
|
184982
|
+
|
|
184983
|
+
subtype: str
|
|
184984
|
+
""" Subtype of the default value"""
|
|
184985
|
+
|
|
184986
|
+
def draw(self, context: Context, layout: UILayout) -> None:
|
|
184987
|
+
"""Draw interface socket settings
|
|
184988
|
+
|
|
184989
|
+
:param context:
|
|
184990
|
+
:param layout: Layout, Layout in the UI
|
|
184991
|
+
"""
|
|
184992
|
+
|
|
184993
|
+
def init_socket(self, node: Node, socket: NodeSocket, data_path: str) -> None:
|
|
184994
|
+
"""Initialize a node socket instance
|
|
184995
|
+
|
|
184996
|
+
:param node: Node, Node of the socket to initialize
|
|
184997
|
+
:param socket: Socket, Socket to initialize
|
|
184998
|
+
:param data_path: Data Path, Path to specialized socket data
|
|
184999
|
+
"""
|
|
185000
|
+
|
|
185001
|
+
def from_socket(self, node: Node, socket: NodeSocket) -> None:
|
|
185002
|
+
"""Setup template parameters from an existing socket
|
|
185003
|
+
|
|
185004
|
+
:param node: Node, Node of the original socket
|
|
185005
|
+
:param socket: Socket, Original socket
|
|
185006
|
+
"""
|
|
185007
|
+
|
|
185008
|
+
@classmethod
|
|
185009
|
+
def bl_rna_get_subclass(
|
|
185010
|
+
cls,
|
|
185011
|
+
id: str | None,
|
|
185012
|
+
default=None,
|
|
185013
|
+
/,
|
|
185014
|
+
) -> Struct:
|
|
185015
|
+
"""
|
|
185016
|
+
|
|
185017
|
+
:param id: The RNA type identifier.
|
|
185018
|
+
:param default:
|
|
185019
|
+
:return: The RNA type or default when not found.
|
|
185020
|
+
"""
|
|
185021
|
+
|
|
185022
|
+
@classmethod
|
|
185023
|
+
def bl_rna_get_subclass_py(
|
|
185024
|
+
cls,
|
|
185025
|
+
id: str | None,
|
|
185026
|
+
default=None,
|
|
185027
|
+
/,
|
|
185028
|
+
) -> typing.Any:
|
|
185029
|
+
"""
|
|
185030
|
+
|
|
185031
|
+
:param id: The RNA type identifier.
|
|
185032
|
+
:param default:
|
|
185033
|
+
:return: The class or default when not found.
|
|
185034
|
+
"""
|
|
185035
|
+
|
|
184783
185036
|
class NodeTreeInterfaceSocketFloatPercentage(
|
|
184784
185037
|
NodeTreeInterfaceSocket, NodeTreeInterfaceItem, bpy_struct
|
|
184785
185038
|
):
|
{fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260116.dist-info}/RECORD
RENAMED
|
@@ -31,7 +31,7 @@ _bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
31
31
|
_bl_ui_utils/layout/__init__.pyi,sha256=diIx4fYNx0-cCb582pWqI4VWUb1zl5--IG-OXvtCdd0,215
|
|
32
32
|
_blendfile_header/__init__.pyi,sha256=KNh8jqVO-nkop6SCeeSsVlsXn8ZrlLQyjmeJZvqyDes,1503
|
|
33
33
|
_blendfile_header/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
_bpy_internal/__init__.pyi,sha256=
|
|
34
|
+
_bpy_internal/__init__.pyi,sha256=SjFD8IMCWmCa3jTFe21NF53VSC7rIaGf30rz1UKTv-w,374
|
|
35
35
|
_bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
_bpy_internal/addons/__init__.pyi,sha256=s4opQQDWvCt1h0JSU6xojviEDXk-b4zoOUGizdrg-3A,114
|
|
37
37
|
_bpy_internal/addons/cli/__init__.pyi,sha256=4bhW_Ern-FwNR2AjuKoAzFy3mRSBvkMS_rUbN2IyeJY,138
|
|
@@ -46,9 +46,10 @@ _bpy_internal/extensions/__init__.pyi,sha256=WITpwHv5YB5MhSXLQ1F6Eb07h1sdKl3jh9r
|
|
|
46
46
|
_bpy_internal/extensions/junction_module/__init__.pyi,sha256=HLTAcbvk_Gz3ew5wkrMX6vhvJxAVhHmaAp8hJ1xe7g0,1027
|
|
47
47
|
_bpy_internal/extensions/stale_file_manager/__init__.pyi,sha256=XX8gqh2o8Edkz8jo4wTBd3oIzn-91ps-qLeReMe7-NE,785
|
|
48
48
|
_bpy_internal/extensions/wheel_manager/__init__.pyi,sha256=iof2eWA4COe-HySkeiyqsDRQ-rLRt0fWRKL9znHrVQg,976
|
|
49
|
-
_bpy_internal/freedesktop/__init__.pyi,sha256=l2TbFg6Eg3d6Jrn2vIPRtmg8fHaL_4hHtjF9SSarDw0,926
|
|
50
49
|
_bpy_internal/grease_pencil/__init__.pyi,sha256=4YIHrnLvkVHJW3S7fz8xYyAakqsDCnxvaQfuZiUUvFc,120
|
|
51
50
|
_bpy_internal/grease_pencil/stroke/__init__.pyi,sha256=WZyvmOADIF0IC_aQHaQUnxSJ_nfF75phpIuLwxwWRhM,2192
|
|
51
|
+
_bpy_internal/platform/__init__.pyi,sha256=0AcS2goUqkNAe5SwRtQNb_N8V_LHI7WIHvq6C0cZfZs,130
|
|
52
|
+
_bpy_internal/platform/freedesktop/__init__.pyi,sha256=l2TbFg6Eg3d6Jrn2vIPRtmg8fHaL_4hHtjF9SSarDw0,926
|
|
52
53
|
_bpy_internal/system_info/__init__.pyi,sha256=U0qDEDvXTA0KHyhqeNNd4eLbsn3quigyg1qJD-OeV4E,264
|
|
53
54
|
_bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=synyefSRdKBV1Yen5e1NoxwWeP2yiYQ2uoCk3EX_7HE,121
|
|
54
55
|
_bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=BkoZMVSr2fWZuinL28e9e7PUTYiWEBwEHhUgPCJWyMs,144
|
|
@@ -134,7 +135,7 @@ bl_ui/__init__.pyi,sha256=tSrO3hGIas4LoQiTtzhnuU9BrSF3GJ_Osq6OD0rc-BU,7063
|
|
|
134
135
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
136
|
bl_ui/anim/__init__.pyi,sha256=0JPiZ9LgUqabOkuvIP1YrX1uRrVQdPwUHVkGJ5PH8ho,878
|
|
136
137
|
bl_ui/asset_shelf/__init__.pyi,sha256=ekmDyY0LQ7jrdveaVblTcxUNFWd4dd1NBVYkb5rbiLI,765
|
|
137
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
138
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=81QVZe8pd6NSZddr_UJME5l09AMF9ve3nOv59JqJmxo,3771
|
|
138
139
|
bl_ui/node_add_menu/__init__.pyi,sha256=6Qu5laFS_5s9S6y9at_1qBnI_nMXeTx8FiQtdnbvAuo,7927
|
|
139
140
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=dob1UYQq_Vi-gROCfc8XDNKAt2GYv3Rhhj58L_MH8AA,11657
|
|
140
141
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=QV7ZetK6xQbSEgT-6RKPzfsQrXVrHT8tHVEdwGjaCLk,33980
|
|
@@ -309,8 +310,8 @@ bpy/ops/world/__init__.pyi,sha256=AUIC-ONsc4QHX5bL5rUHEibn4kejjgsFbaJ66NGQztM,51
|
|
|
309
310
|
bpy/path/__init__.pyi,sha256=jgXGlVLUTr15BhcgCVnkz6WlJp4yjpHhJc4TJAXSbsU,4632
|
|
310
311
|
bpy/props/__init__.pyi,sha256=BFnRoY78kkf6szROPfp4HSETs8yEgMeKE4QeSd2vDrs,41820
|
|
311
312
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
312
|
-
bpy/stub_internal/rna_enums/__init__.pyi,sha256=
|
|
313
|
-
bpy/types/__init__.pyi,sha256=
|
|
313
|
+
bpy/stub_internal/rna_enums/__init__.pyi,sha256=qwmvb4vKgXjyUx69cDNAssAsbkYCVs1ODFOk4wl9yMY,144112
|
|
314
|
+
bpy/types/__init__.pyi,sha256=_Fy-udGVZQq-CE5-KyuOaSUd2Hkyb8khT5vhLPKoK6s,5374433
|
|
314
315
|
bpy/utils/__init__.pyi,sha256=z2RE91bnjKGSocTVMkIrZ1HS9Q5UUC_u1eo3Kv1DVzs,13054
|
|
315
316
|
bpy/utils/previews/__init__.pyi,sha256=ByUvnneVHqE8dr5c1-hYsf-6qaKWdU0KP0IbwA5QN00,2028
|
|
316
317
|
bpy/utils/units/__init__.pyi,sha256=CbBgOpnx48WP0flNilskhsmA7YCAnbbj07vr3OXlMG8,2214
|
|
@@ -363,7 +364,7 @@ keyingsets_builtins/__init__.pyi,sha256=GFCf27uFnI3fSM3FFHhsUmCejf9_hH3w4ZyXh8u6
|
|
|
363
364
|
keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
365
|
mathutils/__init__.pyi,sha256=ZKL_f4PZHCFCI61ywjxdmL8mLWhm5e5GNdVjzlhXBoM,59647
|
|
365
366
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
|
-
mathutils/bvhtree/__init__.pyi,sha256=
|
|
367
|
+
mathutils/bvhtree/__init__.pyi,sha256=Udecb16nXe68Lfssb_exAZWa0z6M6ZVl86MSWK99KrQ,4121
|
|
367
368
|
mathutils/geometry/__init__.pyi,sha256=LbntkppsbVjYF62rey4pNh8Ok6lA51KuRarm_Dc5Q9E,18344
|
|
368
369
|
mathutils/interpolate/__init__.pyi,sha256=QlQGGsjQkSda5BAkZjVpMAZ9WtVwlLK-uSB8W4n5_iE,481
|
|
369
370
|
mathutils/kdtree/__init__.pyi,sha256=ikBFlCtJ6zDRwbgc5zazChNCMUv0xkY3mO51LMO7o_o,1802
|
|
@@ -376,7 +377,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
|
|
|
376
377
|
rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
378
|
rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
378
379
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
|
-
fake_bpy_module_latest-
|
|
380
|
-
fake_bpy_module_latest-
|
|
381
|
-
fake_bpy_module_latest-
|
|
382
|
-
fake_bpy_module_latest-
|
|
380
|
+
fake_bpy_module_latest-20260116.dist-info/METADATA,sha256=LrfDPE8cIWttTcUR62qHjhuyQOaLs95aRPH0KyNL8eE,7739
|
|
381
|
+
fake_bpy_module_latest-20260116.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
382
|
+
fake_bpy_module_latest-20260116.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
|
|
383
|
+
fake_bpy_module_latest-20260116.dist-info/RECORD,,
|
mathutils/bvhtree/__init__.pyi
CHANGED
|
@@ -7,6 +7,7 @@ import typing
|
|
|
7
7
|
import collections.abc
|
|
8
8
|
import typing_extensions
|
|
9
9
|
import numpy.typing as npt
|
|
10
|
+
import _bpy_types
|
|
10
11
|
import bmesh.types
|
|
11
12
|
import bpy.types
|
|
12
13
|
import mathutils
|
|
@@ -23,7 +24,7 @@ class BVHTree:
|
|
|
23
24
|
@classmethod
|
|
24
25
|
def FromObject(
|
|
25
26
|
cls,
|
|
26
|
-
object:
|
|
27
|
+
object: _bpy_types.Object,
|
|
27
28
|
depsgraph: bpy.types.Depsgraph,
|
|
28
29
|
*,
|
|
29
30
|
deform: bool = True,
|
|
File without changes
|
{fake_bpy_module_latest-20260115.dist-info → fake_bpy_module_latest-20260116.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|