fake-bpy-module 20251001__py3-none-any.whl → 20251002__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/properties_paint_common/__init__.pyi +0 -2
- bmesh/types/__init__.pyi +98 -225
- bpy/ops/node/__init__.pyi +48 -0
- bpy/ops/sequencer/__init__.pyi +2 -10
- bpy/ops/wm/__init__.pyi +107 -12
- bpy/stub_internal/rna_enums/__init__.pyi +3 -1
- bpy/types/__init__.pyi +1386 -897
- bpy_extras/anim_utils/__init__.pyi +1 -1
- {fake_bpy_module-20251001.dist-info → fake_bpy_module-20251002.dist-info}/METADATA +1 -1
- {fake_bpy_module-20251001.dist-info → fake_bpy_module-20251002.dist-info}/RECORD +17 -17
- freestyle/utils/__init__.pyi +1 -1
- gpu/types/__init__.pyi +95 -95
- mathutils/bvhtree/__init__.pyi +2 -3
- mathutils/geometry/__init__.pyi +22 -3
- {fake_bpy_module-20251001.dist-info → fake_bpy_module-20251002.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20251001.dist-info → fake_bpy_module-20251002.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.
|
|
@@ -96,7 +96,6 @@ class UnifiedPaintPanel:
|
|
|
96
96
|
unified_name=None,
|
|
97
97
|
pressure_name=None,
|
|
98
98
|
curve_visibility_name=None,
|
|
99
|
-
icon="NONE",
|
|
100
99
|
text=None,
|
|
101
100
|
slider=False,
|
|
102
101
|
header=False,
|
|
@@ -113,7 +112,6 @@ class UnifiedPaintPanel:
|
|
|
113
112
|
:param unified_name:
|
|
114
113
|
:param pressure_name:
|
|
115
114
|
:param curve_visibility_name:
|
|
116
|
-
:param icon:
|
|
117
115
|
:param text:
|
|
118
116
|
:param slider:
|
|
119
117
|
:param header:
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -23,7 +23,6 @@ import typing
|
|
|
23
23
|
import collections.abc
|
|
24
24
|
import typing_extensions
|
|
25
25
|
import numpy.typing as npt
|
|
26
|
-
import _bpy_types
|
|
27
26
|
import bpy.types
|
|
28
27
|
import mathutils
|
|
29
28
|
|
|
@@ -117,17 +116,11 @@ class BMEdge:
|
|
|
117
116
|
:type: bool
|
|
118
117
|
"""
|
|
119
118
|
|
|
120
|
-
link_faces:
|
|
121
|
-
""" Faces connected to this edge, (read-only).
|
|
119
|
+
link_faces: typing.Any
|
|
120
|
+
""" Faces connected to this edge, (read-only)."""
|
|
122
121
|
|
|
123
|
-
:
|
|
124
|
-
"""
|
|
125
|
-
|
|
126
|
-
link_loops: BMElemSeq[BMLoop]
|
|
127
|
-
""" Loops connected to this edge, (read-only).
|
|
128
|
-
|
|
129
|
-
:type: BMElemSeq[BMLoop]
|
|
130
|
-
"""
|
|
122
|
+
link_loops: typing.Any
|
|
123
|
+
""" Loops connected to this edge, (read-only)."""
|
|
131
124
|
|
|
132
125
|
seam: bool
|
|
133
126
|
""" Seam for UV unwrapping.
|
|
@@ -153,11 +146,8 @@ class BMEdge:
|
|
|
153
146
|
:type: bool
|
|
154
147
|
"""
|
|
155
148
|
|
|
156
|
-
verts:
|
|
157
|
-
""" Verts this edge uses (always 2), (read-only).
|
|
158
|
-
|
|
159
|
-
:type: BMElemSeq[BMVert]
|
|
160
|
-
"""
|
|
149
|
+
verts: typing.Any
|
|
150
|
+
""" Verts this edge uses (always 2), (read-only)."""
|
|
161
151
|
|
|
162
152
|
def calc_face_angle(self, fallback: typing.Any | None = None) -> float:
|
|
163
153
|
"""
|
|
@@ -312,7 +302,7 @@ class BMEdgeSeq:
|
|
|
312
302
|
reverse: bool = False,
|
|
313
303
|
) -> None:
|
|
314
304
|
"""Sort the elements of this sequence, using an optional custom sort key.
|
|
315
|
-
Indices of elements are not changed, `BMElemSeq.index_update` can be used for that.
|
|
305
|
+
Indices of elements are not changed, `bmesh.types.BMElemSeq.index_update` can be used for that.
|
|
316
306
|
|
|
317
307
|
:param key: The key that sets the ordering of the elements.
|
|
318
308
|
:type key: None | collections.abc.Callable[[BMVert | BMEdge | BMFace], int] | None
|
|
@@ -389,7 +379,7 @@ class BMEditSelSeq:
|
|
|
389
379
|
|
|
390
380
|
class BMElemSeq[_GenericType1]:
|
|
391
381
|
"""General sequence type used for accessing any sequence of
|
|
392
|
-
`BMVert`, `BMEdge`, `BMFace`, `BMLoop`.When accessed via `BMesh.verts`, `BMesh.edges`, `BMesh.faces`
|
|
382
|
+
`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`, `bmesh.types.BMLoop`.When accessed via `bmesh.types.BMesh.verts`, `bmesh.types.BMesh.edges`, `bmesh.types.BMesh.faces`
|
|
393
383
|
there are also functions to create/remove items.
|
|
394
384
|
"""
|
|
395
385
|
|
|
@@ -433,11 +423,8 @@ class BMElemSeq[_GenericType1]:
|
|
|
433
423
|
class BMFace:
|
|
434
424
|
"""The BMesh face with 3 or more sides"""
|
|
435
425
|
|
|
436
|
-
edges:
|
|
437
|
-
""" Edges of this face, (read-only).
|
|
438
|
-
|
|
439
|
-
:type: BMElemSeq[BMEdge]
|
|
440
|
-
"""
|
|
426
|
+
edges: typing.Any
|
|
427
|
+
""" Edges of this face, (read-only)."""
|
|
441
428
|
|
|
442
429
|
hide: bool
|
|
443
430
|
""" Hidden state of this element.
|
|
@@ -457,11 +444,8 @@ class BMFace:
|
|
|
457
444
|
:type: bool
|
|
458
445
|
"""
|
|
459
446
|
|
|
460
|
-
loops:
|
|
461
|
-
""" Loops of this face, (read-only).
|
|
462
|
-
|
|
463
|
-
:type: BMElemSeq[BMLoop]
|
|
464
|
-
"""
|
|
447
|
+
loops: typing.Any
|
|
448
|
+
""" Loops of this face, (read-only)."""
|
|
465
449
|
|
|
466
450
|
material_index: int
|
|
467
451
|
""" The face's material index.
|
|
@@ -493,11 +477,8 @@ class BMFace:
|
|
|
493
477
|
:type: bool
|
|
494
478
|
"""
|
|
495
479
|
|
|
496
|
-
verts:
|
|
497
|
-
""" Verts of this face, (read-only).
|
|
498
|
-
|
|
499
|
-
:type: BMElemSeq[BMVert]
|
|
500
|
-
"""
|
|
480
|
+
verts: typing.Any
|
|
481
|
+
""" Verts of this face, (read-only)."""
|
|
501
482
|
|
|
502
483
|
def calc_area(self) -> float:
|
|
503
484
|
"""Return the area of the face.
|
|
@@ -703,7 +684,7 @@ class BMFaceSeq:
|
|
|
703
684
|
reverse: bool = False,
|
|
704
685
|
) -> None:
|
|
705
686
|
"""Sort the elements of this sequence, using an optional custom sort key.
|
|
706
|
-
Indices of elements are not changed, `BMElemSeq.index_update` can be used for that.
|
|
687
|
+
Indices of elements are not changed, `bmesh.types.BMElemSeq.index_update` can be used for that.
|
|
707
688
|
|
|
708
689
|
:param key: The key that sets the ordering of the elements.
|
|
709
690
|
:type key: None | collections.abc.Callable[[BMVert | BMEdge | BMFace], int] | None
|
|
@@ -747,7 +728,7 @@ class BMFaceSeq:
|
|
|
747
728
|
|
|
748
729
|
class BMIter[_GenericType1]:
|
|
749
730
|
"""Internal BMesh type for looping over verts/faces/edges,
|
|
750
|
-
used for iterating over `BMElemSeq` types.
|
|
731
|
+
used for iterating over `bmesh.types.BMElemSeq` types.
|
|
751
732
|
"""
|
|
752
733
|
|
|
753
734
|
def __iter__(self) -> BMIter[_GenericType1]:
|
|
@@ -767,203 +748,110 @@ class BMIter[_GenericType1]:
|
|
|
767
748
|
class BMLayerAccessEdge:
|
|
768
749
|
"""Exposes custom-data layer attributes."""
|
|
769
750
|
|
|
770
|
-
bool:
|
|
771
|
-
""" Generic boolean custom-data layer.
|
|
772
|
-
|
|
773
|
-
:type: BMLayerCollection[boolean]
|
|
774
|
-
"""
|
|
775
|
-
|
|
776
|
-
color: BMLayerCollection[mathutils.Vector]
|
|
777
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
778
|
-
|
|
779
|
-
:type: BMLayerCollection[mathutils.Vector]
|
|
780
|
-
"""
|
|
781
|
-
|
|
782
|
-
float: BMLayerCollection[float]
|
|
783
|
-
""" Generic float custom-data layer.
|
|
784
|
-
|
|
785
|
-
:type: BMLayerCollection[float]
|
|
786
|
-
"""
|
|
787
|
-
|
|
788
|
-
float_color: BMLayerCollection[mathutils.Vector]
|
|
789
|
-
""" Generic RGBA color with float precision custom-data layer.
|
|
751
|
+
bool: typing.Any
|
|
752
|
+
""" Generic boolean custom-data layer."""
|
|
790
753
|
|
|
791
|
-
:
|
|
792
|
-
"""
|
|
793
|
-
|
|
794
|
-
float_vector: BMLayerCollection[mathutils.Vector]
|
|
795
|
-
""" Generic 3D vector with float precision custom-data layer.
|
|
754
|
+
color: typing.Any
|
|
755
|
+
""" Generic RGBA color with 8-bit precision custom-data layer."""
|
|
796
756
|
|
|
797
|
-
:
|
|
798
|
-
"""
|
|
757
|
+
float: typing.Any
|
|
758
|
+
""" Generic float custom-data layer."""
|
|
799
759
|
|
|
800
|
-
|
|
801
|
-
""" Generic
|
|
760
|
+
float_color: typing.Any
|
|
761
|
+
""" Generic RGBA color with float precision custom-data layer."""
|
|
802
762
|
|
|
803
|
-
:
|
|
804
|
-
"""
|
|
763
|
+
float_vector: typing.Any
|
|
764
|
+
""" Generic 3D vector with float precision custom-data layer."""
|
|
805
765
|
|
|
806
|
-
|
|
807
|
-
""" Generic
|
|
766
|
+
int: typing.Any
|
|
767
|
+
""" Generic int custom-data layer."""
|
|
808
768
|
|
|
809
|
-
:
|
|
810
|
-
"""
|
|
769
|
+
string: typing.Any
|
|
770
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length)."""
|
|
811
771
|
|
|
812
772
|
class BMLayerAccessFace:
|
|
813
773
|
"""Exposes custom-data layer attributes."""
|
|
814
774
|
|
|
815
|
-
bool:
|
|
816
|
-
""" Generic boolean custom-data layer.
|
|
775
|
+
bool: typing.Any
|
|
776
|
+
""" Generic boolean custom-data layer."""
|
|
817
777
|
|
|
818
|
-
:
|
|
819
|
-
"""
|
|
778
|
+
color: typing.Any
|
|
779
|
+
""" Generic RGBA color with 8-bit precision custom-data layer."""
|
|
820
780
|
|
|
821
|
-
|
|
822
|
-
""" Generic
|
|
781
|
+
float: typing.Any
|
|
782
|
+
""" Generic float custom-data layer."""
|
|
823
783
|
|
|
824
|
-
:
|
|
825
|
-
"""
|
|
826
|
-
|
|
827
|
-
float: BMLayerCollection[float]
|
|
828
|
-
""" Generic float custom-data layer.
|
|
784
|
+
float_color: typing.Any
|
|
785
|
+
""" Generic RGBA color with float precision custom-data layer."""
|
|
829
786
|
|
|
830
|
-
:
|
|
831
|
-
"""
|
|
787
|
+
float_vector: typing.Any
|
|
788
|
+
""" Generic 3D vector with float precision custom-data layer."""
|
|
832
789
|
|
|
833
|
-
|
|
834
|
-
""" Generic
|
|
835
|
-
|
|
836
|
-
:type: BMLayerCollection[mathutils.Vector]
|
|
837
|
-
"""
|
|
790
|
+
int: typing.Any
|
|
791
|
+
""" Generic int custom-data layer."""
|
|
838
792
|
|
|
839
|
-
|
|
840
|
-
""" Generic
|
|
841
|
-
|
|
842
|
-
:type: BMLayerCollection[mathutils.Vector]
|
|
843
|
-
"""
|
|
844
|
-
|
|
845
|
-
int: BMLayerCollection[int]
|
|
846
|
-
""" Generic int custom-data layer.
|
|
847
|
-
|
|
848
|
-
:type: BMLayerCollection[int]
|
|
849
|
-
"""
|
|
850
|
-
|
|
851
|
-
string: BMLayerCollection[bytes]
|
|
852
|
-
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
853
|
-
|
|
854
|
-
:type: BMLayerCollection[bytes]
|
|
855
|
-
"""
|
|
793
|
+
string: typing.Any
|
|
794
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length)."""
|
|
856
795
|
|
|
857
796
|
class BMLayerAccessLoop:
|
|
858
797
|
"""Exposes custom-data layer attributes."""
|
|
859
798
|
|
|
860
|
-
bool:
|
|
861
|
-
""" Generic boolean custom-data layer.
|
|
862
|
-
|
|
863
|
-
:type: BMLayerCollection[boolean]
|
|
864
|
-
"""
|
|
865
|
-
|
|
866
|
-
color: BMLayerCollection[mathutils.Vector]
|
|
867
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
868
|
-
|
|
869
|
-
:type: BMLayerCollection[mathutils.Vector]
|
|
870
|
-
"""
|
|
799
|
+
bool: typing.Any
|
|
800
|
+
""" Generic boolean custom-data layer."""
|
|
871
801
|
|
|
872
|
-
|
|
873
|
-
""" Generic
|
|
802
|
+
color: typing.Any
|
|
803
|
+
""" Generic RGBA color with 8-bit precision custom-data layer."""
|
|
874
804
|
|
|
875
|
-
:
|
|
876
|
-
"""
|
|
805
|
+
float: typing.Any
|
|
806
|
+
""" Generic float custom-data layer."""
|
|
877
807
|
|
|
878
|
-
float_color:
|
|
879
|
-
""" Generic RGBA color with float precision custom-data layer.
|
|
808
|
+
float_color: typing.Any
|
|
809
|
+
""" Generic RGBA color with float precision custom-data layer."""
|
|
880
810
|
|
|
881
|
-
:
|
|
882
|
-
"""
|
|
811
|
+
float_vector: typing.Any
|
|
812
|
+
""" Generic 3D vector with float precision custom-data layer."""
|
|
883
813
|
|
|
884
|
-
|
|
885
|
-
""" Generic
|
|
814
|
+
int: typing.Any
|
|
815
|
+
""" Generic int custom-data layer."""
|
|
886
816
|
|
|
887
|
-
:
|
|
888
|
-
"""
|
|
817
|
+
string: typing.Any
|
|
818
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length)."""
|
|
889
819
|
|
|
890
|
-
|
|
891
|
-
"""
|
|
892
|
-
|
|
893
|
-
:type: BMLayerCollection[int]
|
|
894
|
-
"""
|
|
895
|
-
|
|
896
|
-
string: BMLayerCollection[bytes]
|
|
897
|
-
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
898
|
-
|
|
899
|
-
:type: BMLayerCollection[bytes]
|
|
900
|
-
"""
|
|
901
|
-
|
|
902
|
-
uv: BMLayerCollection[BMLoopUV]
|
|
903
|
-
""" Accessor for `BMLoopUV` UV (as a 2D Vector).
|
|
904
|
-
|
|
905
|
-
:type: BMLayerCollection[BMLoopUV]
|
|
906
|
-
"""
|
|
820
|
+
uv: typing.Any
|
|
821
|
+
""" Accessor for `bmesh.types.BMLoopUV` UV (as a 2D Vector)."""
|
|
907
822
|
|
|
908
823
|
class BMLayerAccessVert:
|
|
909
824
|
"""Exposes custom-data layer attributes."""
|
|
910
825
|
|
|
911
|
-
bool:
|
|
912
|
-
""" Generic boolean custom-data layer.
|
|
913
|
-
|
|
914
|
-
:type: BMLayerCollection[boolean]
|
|
915
|
-
"""
|
|
916
|
-
|
|
917
|
-
color: BMLayerCollection[mathutils.Vector]
|
|
918
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
919
|
-
|
|
920
|
-
:type: BMLayerCollection[mathutils.Vector]
|
|
921
|
-
"""
|
|
922
|
-
|
|
923
|
-
deform: BMLayerCollection[BMDeformVert]
|
|
924
|
-
""" Vertex deform weight `BMDeformVert` (TODO).
|
|
925
|
-
|
|
926
|
-
:type: BMLayerCollection[BMDeformVert]
|
|
927
|
-
"""
|
|
928
|
-
|
|
929
|
-
float: BMLayerCollection[float]
|
|
930
|
-
""" Generic float custom-data layer.
|
|
826
|
+
bool: typing.Any
|
|
827
|
+
""" Generic boolean custom-data layer."""
|
|
931
828
|
|
|
932
|
-
:
|
|
933
|
-
"""
|
|
829
|
+
color: typing.Any
|
|
830
|
+
""" Generic RGBA color with 8-bit precision custom-data layer."""
|
|
934
831
|
|
|
935
|
-
|
|
936
|
-
"""
|
|
832
|
+
deform: typing.Any
|
|
833
|
+
""" Vertex deform weight `bmesh.types.BMDeformVert` (TODO)."""
|
|
937
834
|
|
|
938
|
-
:
|
|
939
|
-
"""
|
|
835
|
+
float: typing.Any
|
|
836
|
+
""" Generic float custom-data layer."""
|
|
940
837
|
|
|
941
|
-
|
|
942
|
-
""" Generic
|
|
838
|
+
float_color: typing.Any
|
|
839
|
+
""" Generic RGBA color with float precision custom-data layer."""
|
|
943
840
|
|
|
944
|
-
:
|
|
945
|
-
"""
|
|
841
|
+
float_vector: typing.Any
|
|
842
|
+
""" Generic 3D vector with float precision custom-data layer."""
|
|
946
843
|
|
|
947
|
-
int:
|
|
948
|
-
""" Generic int custom-data layer.
|
|
844
|
+
int: typing.Any
|
|
845
|
+
""" Generic int custom-data layer."""
|
|
949
846
|
|
|
950
|
-
:
|
|
951
|
-
"""
|
|
952
|
-
|
|
953
|
-
shape: BMLayerCollection[mathutils.Vector]
|
|
954
|
-
""" Vertex shape-key absolute location (as a 3D Vector).
|
|
955
|
-
|
|
956
|
-
:type: BMLayerCollection[mathutils.Vector]
|
|
957
|
-
"""
|
|
847
|
+
shape: typing.Any
|
|
848
|
+
""" Vertex shape-key absolute location (as a 3D Vector)."""
|
|
958
849
|
|
|
959
850
|
skin: typing.Any
|
|
960
851
|
""" Accessor for skin layer."""
|
|
961
852
|
|
|
962
|
-
string:
|
|
963
|
-
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
964
|
-
|
|
965
|
-
:type: BMLayerCollection[bytes]
|
|
966
|
-
"""
|
|
853
|
+
string: typing.Any
|
|
854
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length)."""
|
|
967
855
|
|
|
968
856
|
class BMLayerCollection[_GenericType1]:
|
|
969
857
|
"""Gives access to a collection of custom-data layers of the same type and behaves like Python dictionaries, except for the ability to do list like index access."""
|
|
@@ -1059,7 +947,7 @@ class BMLayerItem[_GenericType1]:
|
|
|
1059
947
|
"""
|
|
1060
948
|
|
|
1061
949
|
class BMLoop:
|
|
1062
|
-
"""This is normally accessed from `BMFace.loops` where each face loop represents a corner of the face."""
|
|
950
|
+
"""This is normally accessed from `bmesh.types.BMFace.loops` where each face loop represents a corner of the face."""
|
|
1063
951
|
|
|
1064
952
|
edge: BMEdge
|
|
1065
953
|
""" The loop's edge (between this loop and the next), (read-only).
|
|
@@ -1115,11 +1003,8 @@ class BMLoop:
|
|
|
1115
1003
|
:type: typing_extensions.Self
|
|
1116
1004
|
"""
|
|
1117
1005
|
|
|
1118
|
-
link_loops:
|
|
1119
|
-
""" Loops connected to this loop, (read-only).
|
|
1120
|
-
|
|
1121
|
-
:type: BMElemSeq[BMLoop]
|
|
1122
|
-
"""
|
|
1006
|
+
link_loops: typing.Any
|
|
1007
|
+
""" Loops connected to this loop, (read-only)."""
|
|
1123
1008
|
|
|
1124
1009
|
tag: bool
|
|
1125
1010
|
""" Generic attribute scripts can use for own logic
|
|
@@ -1317,23 +1202,14 @@ class BMVert:
|
|
|
1317
1202
|
:type: bool
|
|
1318
1203
|
"""
|
|
1319
1204
|
|
|
1320
|
-
link_edges:
|
|
1321
|
-
""" Edges connected to this vertex (read-only).
|
|
1322
|
-
|
|
1323
|
-
:type: BMElemSeq[BMEdge]
|
|
1324
|
-
"""
|
|
1325
|
-
|
|
1326
|
-
link_faces: BMElemSeq[BMFace]
|
|
1327
|
-
""" Faces connected to this vertex (read-only).
|
|
1205
|
+
link_edges: typing.Any
|
|
1206
|
+
""" Edges connected to this vertex (read-only)."""
|
|
1328
1207
|
|
|
1329
|
-
:
|
|
1330
|
-
"""
|
|
1331
|
-
|
|
1332
|
-
link_loops: BMElemSeq[BMLoop]
|
|
1333
|
-
""" Loops that use this vertex (read-only).
|
|
1208
|
+
link_faces: typing.Any
|
|
1209
|
+
""" Faces connected to this vertex (read-only)."""
|
|
1334
1210
|
|
|
1335
|
-
:
|
|
1336
|
-
"""
|
|
1211
|
+
link_loops: typing.Any
|
|
1212
|
+
""" Loops that use this vertex (read-only)."""
|
|
1337
1213
|
|
|
1338
1214
|
normal: mathutils.Vector
|
|
1339
1215
|
""" The normal for this vertex as a 3D, wrapped vector.
|
|
@@ -1492,7 +1368,7 @@ class BMVertSeq:
|
|
|
1492
1368
|
reverse: bool = False,
|
|
1493
1369
|
) -> None:
|
|
1494
1370
|
"""Sort the elements of this sequence, using an optional custom sort key.
|
|
1495
|
-
Indices of elements are not changed, `BMElemSeq.index_update` can be used for that.
|
|
1371
|
+
Indices of elements are not changed, `bmesh.types.BMElemSeq.index_update` can be used for that.
|
|
1496
1372
|
|
|
1497
1373
|
:param key: The key that sets the ordering of the elements.
|
|
1498
1374
|
:type key: None | collections.abc.Callable[[BMVert | BMEdge | BMFace], int] | None
|
|
@@ -1573,11 +1449,8 @@ class BMesh:
|
|
|
1573
1449
|
:type: BMEditSelSeq
|
|
1574
1450
|
"""
|
|
1575
1451
|
|
|
1576
|
-
select_mode:
|
|
1577
|
-
""" The selection mode,
|
|
1578
|
-
|
|
1579
|
-
:type: set
|
|
1580
|
-
"""
|
|
1452
|
+
select_mode: typing.Any
|
|
1453
|
+
""" The selection mode, cannot be assigned an empty set."""
|
|
1581
1454
|
|
|
1582
1455
|
verts: BMVertSeq
|
|
1583
1456
|
""" This meshes vert sequence (read-only).
|
|
@@ -1616,7 +1489,7 @@ class BMesh:
|
|
|
1616
1489
|
|
|
1617
1490
|
def from_mesh(
|
|
1618
1491
|
self,
|
|
1619
|
-
mesh:
|
|
1492
|
+
mesh: bpy.types.Mesh,
|
|
1620
1493
|
*,
|
|
1621
1494
|
face_normals: bool = True,
|
|
1622
1495
|
vertex_normals: bool = True,
|
|
@@ -1626,7 +1499,7 @@ class BMesh:
|
|
|
1626
1499
|
"""Initialize this bmesh from existing mesh data-block.
|
|
1627
1500
|
|
|
1628
1501
|
:param mesh: The mesh data to load.
|
|
1629
|
-
:type mesh:
|
|
1502
|
+
:type mesh: bpy.types.Mesh
|
|
1630
1503
|
:param face_normals:
|
|
1631
1504
|
:type face_normals: bool
|
|
1632
1505
|
:param vertex_normals:
|
|
@@ -1639,7 +1512,7 @@ class BMesh:
|
|
|
1639
1512
|
|
|
1640
1513
|
def from_object(
|
|
1641
1514
|
self,
|
|
1642
|
-
object:
|
|
1515
|
+
object: bpy.types.Object,
|
|
1643
1516
|
depsgraph: bpy.types.Depsgraph,
|
|
1644
1517
|
*,
|
|
1645
1518
|
cage: bool = False,
|
|
@@ -1649,7 +1522,7 @@ class BMesh:
|
|
|
1649
1522
|
"""Initialize this bmesh from existing object data-block (only meshes are currently supported).
|
|
1650
1523
|
|
|
1651
1524
|
:param object: The object data to load.
|
|
1652
|
-
:type object:
|
|
1525
|
+
:type object: bpy.types.Object
|
|
1653
1526
|
:param depsgraph:
|
|
1654
1527
|
:type depsgraph: bpy.types.Depsgraph
|
|
1655
1528
|
:param cage: Get the mesh as a deformed cage.
|
|
@@ -1671,13 +1544,13 @@ class BMesh:
|
|
|
1671
1544
|
"""
|
|
1672
1545
|
|
|
1673
1546
|
def select_flush_mode(self) -> None:
|
|
1674
|
-
"""flush selection based on the current mode current `BMesh.select_mode`."""
|
|
1547
|
+
"""flush selection based on the current mode current `bmesh.types.BMesh.select_mode`."""
|
|
1675
1548
|
|
|
1676
|
-
def to_mesh(self, mesh:
|
|
1549
|
+
def to_mesh(self, mesh: bpy.types.Mesh) -> None:
|
|
1677
1550
|
"""Writes this BMesh data into an existing Mesh data-block.
|
|
1678
1551
|
|
|
1679
1552
|
:param mesh: The mesh data to write into.
|
|
1680
|
-
:type mesh:
|
|
1553
|
+
:type mesh: bpy.types.Mesh
|
|
1681
1554
|
"""
|
|
1682
1555
|
|
|
1683
1556
|
def transform(
|
|
@@ -1691,5 +1564,5 @@ class BMesh:
|
|
|
1691
1564
|
|
|
1692
1565
|
:param matrix: 4x4x transform matrix.
|
|
1693
1566
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
1694
|
-
:param filter:
|
|
1567
|
+
:param filter: Flag to filter vertices..
|
|
1695
1568
|
"""
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1201,6 +1201,54 @@ def evaluate_closure_output_item_remove(
|
|
|
1201
1201
|
:type node_identifier: int | None
|
|
1202
1202
|
"""
|
|
1203
1203
|
|
|
1204
|
+
def field_to_grid_item_add(
|
|
1205
|
+
execution_context: int | str | None = None,
|
|
1206
|
+
undo: bool | None = None,
|
|
1207
|
+
/,
|
|
1208
|
+
*,
|
|
1209
|
+
node_identifier: int | None = 0,
|
|
1210
|
+
) -> None:
|
|
1211
|
+
"""Add item below active item
|
|
1212
|
+
|
|
1213
|
+
:type execution_context: int | str | None
|
|
1214
|
+
:type undo: bool | None
|
|
1215
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1216
|
+
:type node_identifier: int | None
|
|
1217
|
+
"""
|
|
1218
|
+
|
|
1219
|
+
def field_to_grid_item_move(
|
|
1220
|
+
execution_context: int | str | None = None,
|
|
1221
|
+
undo: bool | None = None,
|
|
1222
|
+
/,
|
|
1223
|
+
*,
|
|
1224
|
+
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1225
|
+
node_identifier: int | None = 0,
|
|
1226
|
+
) -> None:
|
|
1227
|
+
"""Move active item
|
|
1228
|
+
|
|
1229
|
+
:type execution_context: int | str | None
|
|
1230
|
+
:type undo: bool | None
|
|
1231
|
+
:param direction: Direction, Move direction
|
|
1232
|
+
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1233
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1234
|
+
:type node_identifier: int | None
|
|
1235
|
+
"""
|
|
1236
|
+
|
|
1237
|
+
def field_to_grid_item_remove(
|
|
1238
|
+
execution_context: int | str | None = None,
|
|
1239
|
+
undo: bool | None = None,
|
|
1240
|
+
/,
|
|
1241
|
+
*,
|
|
1242
|
+
node_identifier: int | None = 0,
|
|
1243
|
+
) -> None:
|
|
1244
|
+
"""Remove active item
|
|
1245
|
+
|
|
1246
|
+
:type execution_context: int | str | None
|
|
1247
|
+
:type undo: bool | None
|
|
1248
|
+
:param node_identifier: Node Identifier, Optional identifier of the node to operate on
|
|
1249
|
+
:type node_identifier: int | None
|
|
1250
|
+
"""
|
|
1251
|
+
|
|
1204
1252
|
def file_output_item_add(
|
|
1205
1253
|
execution_context: int | str | None = None,
|
|
1206
1254
|
undo: bool | None = None,
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -65,7 +65,6 @@ def change_effect_type(
|
|
|
65
65
|
"MULTIPLY",
|
|
66
66
|
"WIPE",
|
|
67
67
|
"GLOW",
|
|
68
|
-
"TRANSFORM",
|
|
69
68
|
"COLOR",
|
|
70
69
|
"SPEED",
|
|
71
70
|
"MULTICAM",
|
|
@@ -109,9 +108,6 @@ def change_effect_type(
|
|
|
109
108
|
GLOW
|
|
110
109
|
Glow -- Add blur and brightness to light areas.
|
|
111
110
|
|
|
112
|
-
TRANSFORM
|
|
113
|
-
Transform -- Apply scale, rotation, or translation.
|
|
114
|
-
|
|
115
111
|
COLOR
|
|
116
112
|
Color -- Add a simple color strip.
|
|
117
113
|
|
|
@@ -132,7 +128,7 @@ def change_effect_type(
|
|
|
132
128
|
|
|
133
129
|
COLORMIX
|
|
134
130
|
Color Mix -- Combine two strips using blend modes.
|
|
135
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','
|
|
131
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
136
132
|
"""
|
|
137
133
|
|
|
138
134
|
def change_path(
|
|
@@ -411,7 +407,6 @@ def effect_strip_add(
|
|
|
411
407
|
"MULTIPLY",
|
|
412
408
|
"WIPE",
|
|
413
409
|
"GLOW",
|
|
414
|
-
"TRANSFORM",
|
|
415
410
|
"COLOR",
|
|
416
411
|
"SPEED",
|
|
417
412
|
"MULTICAM",
|
|
@@ -464,9 +459,6 @@ def effect_strip_add(
|
|
|
464
459
|
GLOW
|
|
465
460
|
Glow -- Add blur and brightness to light areas.
|
|
466
461
|
|
|
467
|
-
TRANSFORM
|
|
468
|
-
Transform -- Apply scale, rotation, or translation.
|
|
469
|
-
|
|
470
462
|
COLOR
|
|
471
463
|
Color -- Add a simple color strip.
|
|
472
464
|
|
|
@@ -487,7 +479,7 @@ def effect_strip_add(
|
|
|
487
479
|
|
|
488
480
|
COLORMIX
|
|
489
481
|
Color Mix -- Combine two strips using blend modes.
|
|
490
|
-
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','
|
|
482
|
+
:type type: typing.Literal['CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX'] | None
|
|
491
483
|
:param move_strips: Move Strips, Automatically begin translating strips with the mouse after adding them to the timeline
|
|
492
484
|
:type move_strips: bool | None
|
|
493
485
|
:param frame_start: Start Frame, Start frame of the strip
|