fake-bpy-module 20250930__py3-none-any.whl → 20251001__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/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_node/__init__.pyi +0 -36
- bmesh/types/__init__.pyi +7 -6
- bpy/ops/node/__init__.pyi +22 -0
- bpy/ops/object/__init__.pyi +1 -1
- bpy/ops/poselib/__init__.pyi +0 -22
- bpy/ops/sequencer/__init__.pyi +3 -0
- bpy/types/__init__.pyi +44 -13
- bpy_extras/anim_utils/__init__.pyi +3 -0
- {fake_bpy_module-20250930.dist-info → fake_bpy_module-20251001.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250930.dist-info → fake_bpy_module-20251001.dist-info}/RECORD +14 -14
- mathutils/bvhtree/__init__.pyi +3 -2
- {fake_bpy_module-20250930.dist-info → fake_bpy_module-20251001.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250930.dist-info → fake_bpy_module-20251001.dist-info}/top_level.txt +0 -0
|
@@ -120,7 +120,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, _bpy_types.Operator):
|
|
|
120
120
|
|
|
121
121
|
def draw_ui_list(
|
|
122
122
|
layout: bpy.types.UILayout,
|
|
123
|
-
context:
|
|
123
|
+
context: _bpy_types.Context,
|
|
124
124
|
class_name: str = "UI_UL_list",
|
|
125
125
|
*,
|
|
126
126
|
unique_id: str,
|
|
@@ -136,7 +136,7 @@ def draw_ui_list(
|
|
|
136
136
|
:param layout: UILayout to draw the list in.
|
|
137
137
|
:type layout: bpy.types.UILayout
|
|
138
138
|
:param context: Blender context to get the list data from.
|
|
139
|
-
:type context:
|
|
139
|
+
:type context: _bpy_types.Context
|
|
140
140
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
141
141
|
:type class_name: str
|
|
142
142
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -880,42 +880,6 @@ class NODE_PT_node_tree_interface(_bpy_types.Panel):
|
|
|
880
880
|
:param context:
|
|
881
881
|
"""
|
|
882
882
|
|
|
883
|
-
class NODE_PT_node_tree_interface_panel_toggle(_bpy_types.Panel):
|
|
884
|
-
bl_category: typing.Any
|
|
885
|
-
bl_label: typing.Any
|
|
886
|
-
bl_parent_id: typing.Any
|
|
887
|
-
bl_region_type: typing.Any
|
|
888
|
-
bl_rna: typing.Any
|
|
889
|
-
bl_space_type: typing.Any
|
|
890
|
-
id_data: typing.Any
|
|
891
|
-
|
|
892
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
893
|
-
"""
|
|
894
|
-
|
|
895
|
-
:return: The RNA type or default when not found.
|
|
896
|
-
:rtype: bpy.types.Struct
|
|
897
|
-
"""
|
|
898
|
-
|
|
899
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
900
|
-
"""
|
|
901
|
-
|
|
902
|
-
:return: The class or default when not found.
|
|
903
|
-
:rtype: typing.Any
|
|
904
|
-
"""
|
|
905
|
-
|
|
906
|
-
def draw(self, context) -> None:
|
|
907
|
-
"""
|
|
908
|
-
|
|
909
|
-
:param context:
|
|
910
|
-
"""
|
|
911
|
-
|
|
912
|
-
@classmethod
|
|
913
|
-
def poll(cls, context) -> None:
|
|
914
|
-
"""
|
|
915
|
-
|
|
916
|
-
:param context:
|
|
917
|
-
"""
|
|
918
|
-
|
|
919
883
|
class NODE_PT_node_tree_properties(_bpy_types.Panel):
|
|
920
884
|
bl_category: typing.Any
|
|
921
885
|
bl_label: typing.Any
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -23,6 +23,7 @@ import typing
|
|
|
23
23
|
import collections.abc
|
|
24
24
|
import typing_extensions
|
|
25
25
|
import numpy.typing as npt
|
|
26
|
+
import _bpy_types
|
|
26
27
|
import bpy.types
|
|
27
28
|
import mathutils
|
|
28
29
|
|
|
@@ -1615,7 +1616,7 @@ class BMesh:
|
|
|
1615
1616
|
|
|
1616
1617
|
def from_mesh(
|
|
1617
1618
|
self,
|
|
1618
|
-
mesh:
|
|
1619
|
+
mesh: _bpy_types.Mesh,
|
|
1619
1620
|
*,
|
|
1620
1621
|
face_normals: bool = True,
|
|
1621
1622
|
vertex_normals: bool = True,
|
|
@@ -1625,7 +1626,7 @@ class BMesh:
|
|
|
1625
1626
|
"""Initialize this bmesh from existing mesh data-block.
|
|
1626
1627
|
|
|
1627
1628
|
:param mesh: The mesh data to load.
|
|
1628
|
-
:type mesh:
|
|
1629
|
+
:type mesh: _bpy_types.Mesh
|
|
1629
1630
|
:param face_normals:
|
|
1630
1631
|
:type face_normals: bool
|
|
1631
1632
|
:param vertex_normals:
|
|
@@ -1638,7 +1639,7 @@ class BMesh:
|
|
|
1638
1639
|
|
|
1639
1640
|
def from_object(
|
|
1640
1641
|
self,
|
|
1641
|
-
object:
|
|
1642
|
+
object: _bpy_types.Object,
|
|
1642
1643
|
depsgraph: bpy.types.Depsgraph,
|
|
1643
1644
|
*,
|
|
1644
1645
|
cage: bool = False,
|
|
@@ -1648,7 +1649,7 @@ class BMesh:
|
|
|
1648
1649
|
"""Initialize this bmesh from existing object data-block (only meshes are currently supported).
|
|
1649
1650
|
|
|
1650
1651
|
:param object: The object data to load.
|
|
1651
|
-
:type object:
|
|
1652
|
+
:type object: _bpy_types.Object
|
|
1652
1653
|
:param depsgraph:
|
|
1653
1654
|
:type depsgraph: bpy.types.Depsgraph
|
|
1654
1655
|
:param cage: Get the mesh as a deformed cage.
|
|
@@ -1672,11 +1673,11 @@ class BMesh:
|
|
|
1672
1673
|
def select_flush_mode(self) -> None:
|
|
1673
1674
|
"""flush selection based on the current mode current `BMesh.select_mode`."""
|
|
1674
1675
|
|
|
1675
|
-
def to_mesh(self, mesh:
|
|
1676
|
+
def to_mesh(self, mesh: _bpy_types.Mesh) -> None:
|
|
1676
1677
|
"""Writes this BMesh data into an existing Mesh data-block.
|
|
1677
1678
|
|
|
1678
1679
|
:param mesh: The mesh data to write into.
|
|
1679
|
-
:type mesh:
|
|
1680
|
+
:type mesh: _bpy_types.Mesh
|
|
1680
1681
|
"""
|
|
1681
1682
|
|
|
1682
1683
|
def transform(
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -992,6 +992,17 @@ def duplicate(
|
|
|
992
992
|
:type linked: bool | None
|
|
993
993
|
"""
|
|
994
994
|
|
|
995
|
+
def duplicate_compositing_node_group(
|
|
996
|
+
execution_context: int | str | None = None,
|
|
997
|
+
undo: bool | None = None,
|
|
998
|
+
/,
|
|
999
|
+
) -> None:
|
|
1000
|
+
"""Duplicate the currently assigned compositing node group.
|
|
1001
|
+
|
|
1002
|
+
:type execution_context: int | str | None
|
|
1003
|
+
:type undo: bool | None
|
|
1004
|
+
"""
|
|
1005
|
+
|
|
995
1006
|
def duplicate_move(
|
|
996
1007
|
execution_context: int | str | None = None,
|
|
997
1008
|
undo: bool | None = None,
|
|
@@ -1515,6 +1526,17 @@ def group_edit(
|
|
|
1515
1526
|
:type exit: bool | None
|
|
1516
1527
|
"""
|
|
1517
1528
|
|
|
1529
|
+
def group_enter_exit(
|
|
1530
|
+
execution_context: int | str | None = None,
|
|
1531
|
+
undo: bool | None = None,
|
|
1532
|
+
/,
|
|
1533
|
+
) -> None:
|
|
1534
|
+
"""Enter or exit node group based on cursor location
|
|
1535
|
+
|
|
1536
|
+
:type execution_context: int | str | None
|
|
1537
|
+
:type undo: bool | None
|
|
1538
|
+
"""
|
|
1539
|
+
|
|
1518
1540
|
def group_insert(
|
|
1519
1541
|
execution_context: int | str | None = None,
|
|
1520
1542
|
undo: bool | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1534,7 +1534,7 @@ def geometry_node_tree_copy_assign(
|
|
|
1534
1534
|
undo: bool | None = None,
|
|
1535
1535
|
/,
|
|
1536
1536
|
) -> None:
|
|
1537
|
-
"""
|
|
1537
|
+
"""Duplicate the active geometry node group and assign it to the active modifier
|
|
1538
1538
|
|
|
1539
1539
|
:type execution_context: int | str | None
|
|
1540
1540
|
:type undo: bool | None
|
bpy/ops/poselib/__init__.pyi
CHANGED
|
@@ -101,28 +101,6 @@ def blend_pose_asset(
|
|
|
101
101
|
:type release_confirm: bool | None
|
|
102
102
|
"""
|
|
103
103
|
|
|
104
|
-
def convert_old_object_poselib(
|
|
105
|
-
execution_context: int | str | None = None,
|
|
106
|
-
undo: bool | None = None,
|
|
107
|
-
/,
|
|
108
|
-
) -> None:
|
|
109
|
-
"""Create a pose asset for each pose marker in this legacy pose library data-block
|
|
110
|
-
|
|
111
|
-
:type execution_context: int | str | None
|
|
112
|
-
:type undo: bool | None
|
|
113
|
-
"""
|
|
114
|
-
|
|
115
|
-
def convert_old_poselib(
|
|
116
|
-
execution_context: int | str | None = None,
|
|
117
|
-
undo: bool | None = None,
|
|
118
|
-
/,
|
|
119
|
-
) -> None:
|
|
120
|
-
"""Create a pose asset for each pose marker in the current action
|
|
121
|
-
|
|
122
|
-
:type execution_context: int | str | None
|
|
123
|
-
:type undo: bool | None
|
|
124
|
-
"""
|
|
125
|
-
|
|
126
104
|
def copy_as_asset(
|
|
127
105
|
execution_context: int | str | None = None,
|
|
128
106
|
undo: bool | None = None,
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -2165,6 +2165,7 @@ def split(
|
|
|
2165
2165
|
side: typing.Literal["MOUSE", "LEFT", "RIGHT", "BOTH", "NO_CHANGE"]
|
|
2166
2166
|
| None = "MOUSE",
|
|
2167
2167
|
ignore_selection: bool | None = False,
|
|
2168
|
+
ignore_connections: bool | None = False,
|
|
2168
2169
|
) -> None:
|
|
2169
2170
|
"""Split the selected strips in two
|
|
2170
2171
|
|
|
@@ -2182,6 +2183,8 @@ def split(
|
|
|
2182
2183
|
:type side: typing.Literal['MOUSE','LEFT','RIGHT','BOTH','NO_CHANGE'] | None
|
|
2183
2184
|
:param ignore_selection: Ignore Selection, Make cut even if strip is not selected preserving selection state after cut
|
|
2184
2185
|
:type ignore_selection: bool | None
|
|
2186
|
+
:param ignore_connections: Ignore Connections, Dont propagate split to connected strips
|
|
2187
|
+
:type ignore_connections: bool | None
|
|
2185
2188
|
"""
|
|
2186
2189
|
|
|
2187
2190
|
def split_multicam(
|
bpy/types/__init__.pyi
CHANGED
|
@@ -106153,7 +106153,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
106153
106153
|
* ShaderNodeVectorCurve.mapping
|
|
106154
106154
|
* TextureNodeCurveRGB.mapping
|
|
106155
106155
|
* TextureNodeCurveTime.curve
|
|
106156
|
-
* UvSculpt.
|
|
106156
|
+
* UvSculpt.curve_distance_falloff
|
|
106157
106157
|
* VertexWeightEditModifier.map_curve
|
|
106158
106158
|
* VertexWeightProximityModifier.map_curve
|
|
106159
106159
|
* WarpModifier.falloff_curve
|
|
@@ -108924,6 +108924,7 @@ Menu.poll function.
|
|
|
108924
108924
|
* Action.fcurve_ensure_for_datablock
|
|
108925
108925
|
* Action.fcurves
|
|
108926
108926
|
* ActionChannelbag.fcurves
|
|
108927
|
+
* ActionChannelbagFCurves.ensure
|
|
108927
108928
|
* ActionChannelbagFCurves.find
|
|
108928
108929
|
* ActionChannelbagFCurves.new
|
|
108929
108930
|
* ActionChannelbagFCurves.remove
|
|
@@ -112087,17 +112088,36 @@ class AOVs(bpy_prop_collection[AOV], bpy_struct):
|
|
|
112087
112088
|
class ActionChannelbagFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
112088
112089
|
"""Collection of F-Curves for a specific action slot, on a specific strip"""
|
|
112089
112090
|
|
|
112090
|
-
def new(
|
|
112091
|
+
def new(
|
|
112092
|
+
self, data_path: str, *, index: int | None = 0, group_name: str = ""
|
|
112093
|
+
) -> FCurve:
|
|
112091
112094
|
"""Add an F-Curve to the channelbag
|
|
112092
112095
|
|
|
112093
112096
|
:param data_path: Data Path, F-Curve data path to use
|
|
112094
112097
|
:type data_path: str
|
|
112095
112098
|
:param index: Index, Array index
|
|
112096
112099
|
:type index: int | None
|
|
112100
|
+
:param group_name: Group Name, Name of the Group for this F-Curve, will be created if it does not exist yet
|
|
112101
|
+
:type group_name: str
|
|
112097
112102
|
:return: Newly created F-Curve
|
|
112098
112103
|
:rtype: FCurve
|
|
112099
112104
|
"""
|
|
112100
112105
|
|
|
112106
|
+
def ensure(
|
|
112107
|
+
self, data_path: str, *, index: int | None = 0, group_name: str = ""
|
|
112108
|
+
) -> FCurve:
|
|
112109
|
+
"""Returns the F-Curve if it already exists, and creates it if necessary
|
|
112110
|
+
|
|
112111
|
+
:param data_path: Data Path, F-Curve data path to use
|
|
112112
|
+
:type data_path: str
|
|
112113
|
+
:param index: Index, Array index
|
|
112114
|
+
:type index: int | None
|
|
112115
|
+
:param group_name: Group Name, Name of the Group for this F-Curve, will be created if it does not exist yet. This parameter is ignored if the F-Curve already exists
|
|
112116
|
+
:type group_name: str
|
|
112117
|
+
:return: Found or newly created F-Curve
|
|
112118
|
+
:rtype: FCurve
|
|
112119
|
+
"""
|
|
112120
|
+
|
|
112101
112121
|
def find(self, data_path: str, *, index: int | None = 0) -> FCurve:
|
|
112102
112122
|
"""Find an F-Curve. Note that this function performs a linear scan of all F-Curves in the channelbag.
|
|
112103
112123
|
|
|
@@ -125005,7 +125025,12 @@ class Action(ID, bpy_struct):
|
|
|
125005
125025
|
"""Deselects all keys of the Action. The selection status of F-Curves is unchanged."""
|
|
125006
125026
|
|
|
125007
125027
|
def fcurve_ensure_for_datablock(
|
|
125008
|
-
self,
|
|
125028
|
+
self,
|
|
125029
|
+
datablock: ID,
|
|
125030
|
+
data_path: str,
|
|
125031
|
+
*,
|
|
125032
|
+
index: int | None = 0,
|
|
125033
|
+
group_name: str = "",
|
|
125009
125034
|
) -> FCurve:
|
|
125010
125035
|
"""Ensure that an F-Curve exists, with the given data path and array index, for the given data-block. This action must already be assigned to the data-block. This function will also create the layer, keyframe strip, and action slot if necessary, and take care of assigning the action slot too
|
|
125011
125036
|
|
|
@@ -125015,6 +125040,8 @@ class Action(ID, bpy_struct):
|
|
|
125015
125040
|
:type data_path: str
|
|
125016
125041
|
:param index: Index, Array index
|
|
125017
125042
|
:type index: int | None
|
|
125043
|
+
:param group_name: Group Name, Name of the group for this F-Curve, if any. If the F-Curve already exists, this parameter is ignored
|
|
125044
|
+
:type group_name: str
|
|
125018
125045
|
:return: The found or created F-Curve
|
|
125019
125046
|
:rtype: FCurve
|
|
125020
125047
|
"""
|
|
@@ -239867,7 +239894,11 @@ class Strip(bpy_struct):
|
|
|
239867
239894
|
"""
|
|
239868
239895
|
|
|
239869
239896
|
def split(
|
|
239870
|
-
self,
|
|
239897
|
+
self,
|
|
239898
|
+
frame: int | None,
|
|
239899
|
+
split_method: typing.Literal["SOFT", "HARD"],
|
|
239900
|
+
*,
|
|
239901
|
+
ignore_connections: bool | None = False,
|
|
239871
239902
|
) -> typing_extensions.Self:
|
|
239872
239903
|
"""Split Strip
|
|
239873
239904
|
|
|
@@ -239875,6 +239906,8 @@ class Strip(bpy_struct):
|
|
|
239875
239906
|
:type frame: int | None
|
|
239876
239907
|
:param split_method:
|
|
239877
239908
|
:type split_method: typing.Literal['SOFT','HARD']
|
|
239909
|
+
:param ignore_connections: Dont propagate split to connected strips
|
|
239910
|
+
:type ignore_connections: bool | None
|
|
239878
239911
|
:return: Right side Strip
|
|
239879
239912
|
:rtype: typing_extensions.Self
|
|
239880
239913
|
"""
|
|
@@ -253640,7 +253673,13 @@ class UserSolidLight(bpy_struct):
|
|
|
253640
253673
|
"""
|
|
253641
253674
|
|
|
253642
253675
|
class UvSculpt(bpy_struct):
|
|
253643
|
-
|
|
253676
|
+
curve_distance_falloff: CurveMapping | None
|
|
253677
|
+
"""
|
|
253678
|
+
|
|
253679
|
+
:type: CurveMapping | None
|
|
253680
|
+
"""
|
|
253681
|
+
|
|
253682
|
+
curve_distance_falloff_preset: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
253644
253683
|
"""
|
|
253645
253684
|
|
|
253646
253685
|
:type: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
@@ -253658,12 +253697,6 @@ class UvSculpt(bpy_struct):
|
|
|
253658
253697
|
:type: float
|
|
253659
253698
|
"""
|
|
253660
253699
|
|
|
253661
|
-
strength_curve: CurveMapping | None
|
|
253662
|
-
"""
|
|
253663
|
-
|
|
253664
|
-
:type: CurveMapping | None
|
|
253665
|
-
"""
|
|
253666
|
-
|
|
253667
253700
|
@classmethod
|
|
253668
253701
|
def bl_rna_get_subclass(
|
|
253669
253702
|
cls,
|
|
@@ -262039,8 +262072,6 @@ NODE_PT_node_tree_animation: bl_ui.space_node.NODE_PT_node_tree_animation
|
|
|
262039
262072
|
|
|
262040
262073
|
NODE_PT_node_tree_interface: bl_ui.space_node.NODE_PT_node_tree_interface
|
|
262041
262074
|
|
|
262042
|
-
NODE_PT_node_tree_interface_panel_toggle: bl_ui.space_node.NODE_PT_node_tree_interface_panel_toggle
|
|
262043
|
-
|
|
262044
262075
|
NODE_PT_node_tree_properties: bl_ui.space_node.NODE_PT_node_tree_properties
|
|
262045
262076
|
|
|
262046
262077
|
NODE_PT_overlay: bl_ui.space_node.NODE_PT_overlay
|
|
@@ -64,6 +64,9 @@ class KeyframesCo:
|
|
|
64
64
|
:type action_group_name: str
|
|
65
65
|
"""
|
|
66
66
|
|
|
67
|
+
def action_ensure_channelbag_for_slot(action, slot) -> None:
|
|
68
|
+
"""Ensure a layer and a keyframe strip exists, then ensure that that strip has a channelbag for the slot."""
|
|
69
|
+
|
|
67
70
|
def action_get_channelbag_for_slot(action, slot) -> None:
|
|
68
71
|
"""Returns the first channelbag found for the slot.
|
|
69
72
|
In case there are multiple layers or strips they are iterated until a
|
|
@@ -111,7 +111,7 @@ bl_ui/__init__.pyi,sha256=bzjd8FHTafNzS5V6jK2sf7aIflWXIIAAOj2u3CG5Q8s,7004
|
|
|
111
111
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
bl_ui/anim/__init__.pyi,sha256=aUUQB5sqG7wizgoB77tVmFLfhOWMyuHcEUY06w1FW5k,938
|
|
113
113
|
bl_ui/asset_shelf/__init__.pyi,sha256=zy0z1qh-gQXQufHFrEggbXWlihKF9l2OihuhN-iS4NE,825
|
|
114
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
114
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=wKDC1TOAxmPZ4kY86_96aBa-DTcNHrGXNucUNp1UzpY,4303
|
|
115
115
|
bl_ui/node_add_menu/__init__.pyi,sha256=heYX5ZcwyvyzHbTVr2yTSd4isQvJm7adnHov7nH_mlg,8118
|
|
116
116
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=vNqJhWuyye9R5rIsIOEekuaanSf0d7yVdGFjw_GYMDM,11430
|
|
117
117
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=SWFbeRIkfB79FHLiL44XaLS6QQ3p_SOXagconqR6WLQ,37294
|
|
@@ -169,7 +169,7 @@ bl_ui/space_graph/__init__.pyi,sha256=TIljcrouLfS7ICU4fUZaRP5ybcUfd81xiOONIRGbyz
|
|
|
169
169
|
bl_ui/space_image/__init__.pyi,sha256=9jCK_TJ83BC_nZl9NweAKGpbvYvM-gzDuEkXFhGwgqk,47001
|
|
170
170
|
bl_ui/space_info/__init__.pyi,sha256=xS8fd5VIJX3mvOvrjgftzsHAx3ZbNggmUGyJIRv6Pcs,3384
|
|
171
171
|
bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,10324
|
|
172
|
-
bl_ui/space_node/__init__.pyi,sha256=
|
|
172
|
+
bl_ui/space_node/__init__.pyi,sha256=Fn2kIFZ4PxrgtMx9s-l_uDIUC-WZgH6EqTmsO_3AJKw,22442
|
|
173
173
|
bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
|
|
174
174
|
bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
|
|
175
175
|
bl_ui/space_sequencer/__init__.pyi,sha256=uYCt0g3AkdS55wUe5kywRn7eNFv56_Hn42jU3shsd4k,59948
|
|
@@ -195,7 +195,7 @@ bmesh/__init__.pyi,sha256=nhi3aUMSLycSJTzr1Txhjt_NU0y_82NN0NBe8pZYTkE,1541
|
|
|
195
195
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
196
|
bmesh/geometry/__init__.pyi,sha256=MZzpN0T12x1QweeZUui1LVTrnWyqyBgWsF6tPs1Pe9g,682
|
|
197
197
|
bmesh/ops/__init__.pyi,sha256=p-7LAeeK1gD00D6TxnOz_JbD5b-_jW0rUQrwZrAfFsw,76498
|
|
198
|
-
bmesh/types/__init__.pyi,sha256=
|
|
198
|
+
bmesh/types/__init__.pyi,sha256=hg20wS0G5DzRFJvHb5TCF3ZlVOOVLthbbprCsMHrOro,44342
|
|
199
199
|
bmesh/utils/__init__.pyi,sha256=N2mRD0u1ipJkw2nokIb-FCL858ikNQrOM_mqJPiCEXY,6285
|
|
200
200
|
bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
|
|
201
201
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -248,8 +248,8 @@ bpy/ops/material/__init__.pyi,sha256=7yA8XRBaeLm-2IGqQqXcDGNctp3amhdmBMTPoWHw5G8
|
|
|
248
248
|
bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,4258
|
|
249
249
|
bpy/ops/mesh/__init__.pyi,sha256=ORj5lR7JCJdr3ZQrWVfe5p40LGnbAI8cxegrPOfmV8I,132167
|
|
250
250
|
bpy/ops/nla/__init__.pyi,sha256=F0RGCo7T4Y6FAIZ9Jv-TtkDlV1PnWhWjZ2G3EACL0PM,19052
|
|
251
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
252
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
251
|
+
bpy/ops/node/__init__.pyi,sha256=nTBrBhDJSM5bvXxwm_ZDDEZgdJrsTgD4OUs8X4i_eqY,82790
|
|
252
|
+
bpy/ops/object/__init__.pyi,sha256=CdW1k_qlZI0fFdNO0xv1nZpdvrx6NiTLd1u0SCLPIJ4,175903
|
|
253
253
|
bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
|
|
254
254
|
bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
|
|
255
255
|
bpy/ops/paintcurve/__init__.pyi,sha256=CyJ287wx58BG_V8H0yrKF8f01MUkuQLPMhlbSop8Tlw,3143
|
|
@@ -257,7 +257,7 @@ bpy/ops/palette/__init__.pyi,sha256=arZADeq1E2pbQE4cC4GdC9G3mrj31cbU2b4X_jiCdMY,
|
|
|
257
257
|
bpy/ops/particle/__init__.pyi,sha256=yWaqgUeRvSlMs-0msSrT3EHoiDrYXsqeEJDQ7zK9yLo,14503
|
|
258
258
|
bpy/ops/pointcloud/__init__.pyi,sha256=ncp0W4VO2eKWg0w0RbiCMX0T6Pp8lHgkuCozdZYV0cw,3980
|
|
259
259
|
bpy/ops/pose/__init__.pyi,sha256=A3-d0foPDJrVEdxWK27m7rtwsv3jvgzG3vrn39YC6S0,28170
|
|
260
|
-
bpy/ops/poselib/__init__.pyi,sha256=
|
|
260
|
+
bpy/ops/poselib/__init__.pyi,sha256=39eQ57Dd5_Etnkso2FMfF-x385RljybQRPg9sTLzTII,5877
|
|
261
261
|
bpy/ops/preferences/__init__.pyi,sha256=ExaBIhejgkAc7k2DPX7S8II-gEXFmfZOoQVcw_Iom0E,19795
|
|
262
262
|
bpy/ops/ptcache/__init__.pyi,sha256=alDSJmgA1aKoMo46EDHirj_L-9Xc7RvfCh27DRnRuWc,1834
|
|
263
263
|
bpy/ops/render/__init__.pyi,sha256=1RwH4v1gGzN1loZmAd2B_Ff_kaAYSuPd2TbDkDFjB6E,8109
|
|
@@ -267,7 +267,7 @@ bpy/ops/screen/__init__.pyi,sha256=JVe5VWQxsb64V0cJ5DATt1h7wlBwW16qhjlQdzoux3s,2
|
|
|
267
267
|
bpy/ops/script/__init__.pyi,sha256=xMWzlcdSykwWgk_ck_Mnv6pbex532LfNek21C_cWAjU,1047
|
|
268
268
|
bpy/ops/sculpt/__init__.pyi,sha256=7bpCfzikCt-_OCb-4SVg022NttPW760VWCgcoOvhcMc,51571
|
|
269
269
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=Pp-SNyuO82Y1Ksm2ygzZK14X5Nil2cZUOE798KYG5EE,2919
|
|
270
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
270
|
+
bpy/ops/sequencer/__init__.pyi,sha256=FUngjYRbj2sybwn4mvF-2f_Q4HNOktzRQZyWsPqQXis,90950
|
|
271
271
|
bpy/ops/sound/__init__.pyi,sha256=x0KuxcCFRcLVHsSLxqfNcPi0CyqYVMIUGkBvznDroNk,16665
|
|
272
272
|
bpy/ops/spreadsheet/__init__.pyi,sha256=vJX-uQpmdhiHh6dB9yhaqOKkyQKPpRH1Ay2PSwLTEoQ,2175
|
|
273
273
|
bpy/ops/surface/__init__.pyi,sha256=2zsyLcEMeA71sYw44yeIY6l1dRzf77ITk17JWlz2JTk,10390
|
|
@@ -287,13 +287,13 @@ bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
|
287
287
|
bpy/props/__init__.pyi,sha256=_gmJ54eKwSmNZHQyDK1CiQn9fSy_L9K3jfSeX9nhCK4,51038
|
|
288
288
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
289
289
|
bpy/stub_internal/rna_enums/__init__.pyi,sha256=xWXL-ZOUpGKbQfAEuaQDUEYWiR46Jsvr8xexC_UzUoU,142780
|
|
290
|
-
bpy/types/__init__.pyi,sha256=
|
|
290
|
+
bpy/types/__init__.pyi,sha256=3yOXYncSDKlG-EnYwb4B94M7EePT_rX01IYZhM9_Pxg,5901277
|
|
291
291
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
292
292
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
293
293
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
294
294
|
bpy_extras/__init__.pyi,sha256=Vish0mn6IfEYsdv9gWh6VDSpzvOwYavpgAC_PleMtFE,995
|
|
295
295
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
296
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=f45U4OdWKjzrrw7fkuDJk8HjJad2jHEldoVTo_slilU,4751
|
|
297
297
|
bpy_extras/asset_utils/__init__.pyi,sha256=aM9iiUUy5PcxHY5lz-UxfvLzAc9bH5Y-z3kRRB9IzvY,221
|
|
298
298
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=KrJhW9Esut9jZKqcogqgPnrC9LbJOOe3szRluEd5j-E,513
|
|
299
299
|
bpy_extras/id_map_utils/__init__.pyi,sha256=IXrJ93ipXCEEwjJ09T_NNbc0S2RZRvckkjqTNeYk9dY,503
|
|
@@ -350,7 +350,7 @@ keyingsets_utils/__init__.pyi,sha256=LYwQPxGFL9s9daviMo2DyVIUmjyNRFT1S9cvMGBZ6to
|
|
|
350
350
|
keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
351
|
mathutils/__init__.pyi,sha256=QBvmsVe5brYs9KpGoF1DdHKze2iRn5i3pGapskxYzRU,91364
|
|
352
352
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
|
-
mathutils/bvhtree/__init__.pyi,sha256=
|
|
353
|
+
mathutils/bvhtree/__init__.pyi,sha256=rjuZMGm2Jxi0bnaU60v18BuJyO2JWdfRdr5Mp0bYUuk,5138
|
|
354
354
|
mathutils/geometry/__init__.pyi,sha256=N3LtfyhHPnBim_PgIa5likQdcVxOMDvUC-eTqv70ruY,23817
|
|
355
355
|
mathutils/interpolate/__init__.pyi,sha256=ndZoeTg3JKLj5Uskd-TU2BmCEAe8k_-MY-jGzzNj0O4,575
|
|
356
356
|
mathutils/kdtree/__init__.pyi,sha256=99pXd0pG1J4JBPexQBa87d-DAg-3KZ1lmDL3ZLiVA-Q,2309
|
|
@@ -367,7 +367,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
367
367
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
368
368
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
369
369
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
|
-
fake_bpy_module-
|
|
371
|
-
fake_bpy_module-
|
|
372
|
-
fake_bpy_module-
|
|
373
|
-
fake_bpy_module-
|
|
370
|
+
fake_bpy_module-20251001.dist-info/METADATA,sha256=EotPeHQRCQm8V2rq0CAvG693V3NjuYf36D2z_sgXHc0,7429
|
|
371
|
+
fake_bpy_module-20251001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
372
|
+
fake_bpy_module-20251001.dist-info/top_level.txt,sha256=xwHlW-cY033y5uA7GsGZDdOwWdNIzrHETvaZ_rWuR4I,539
|
|
373
|
+
fake_bpy_module-20251001.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
|
|
@@ -25,7 +26,7 @@ class BVHTree:
|
|
|
25
26
|
@classmethod
|
|
26
27
|
def FromObject(
|
|
27
28
|
cls,
|
|
28
|
-
object:
|
|
29
|
+
object: _bpy_types.Object,
|
|
29
30
|
depsgraph: bpy.types.Depsgraph,
|
|
30
31
|
*,
|
|
31
32
|
deform: bool = True,
|
|
@@ -36,7 +37,7 @@ class BVHTree:
|
|
|
36
37
|
"""BVH tree based on `Object` data.
|
|
37
38
|
|
|
38
39
|
:param object: Object data.
|
|
39
|
-
:type object:
|
|
40
|
+
:type object: _bpy_types.Object
|
|
40
41
|
:param depsgraph: Depsgraph to use for evaluating the mesh.
|
|
41
42
|
:type depsgraph: bpy.types.Depsgraph
|
|
42
43
|
:param deform: Use mesh with deformations.
|
|
File without changes
|
|
File without changes
|