fake-bpy-module 20240720__py3-none-any.whl → 20240722__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.
- aud/__init__.pyi +77 -77
- bl_operators/add_mesh_torus/__init__.pyi +1 -2
- bl_operators/assets/__init__.pyi +2 -2
- bl_operators/bone_selection_sets/__init__.pyi +16 -28
- bl_operators/connect_to_output/__init__.pyi +1 -4
- bl_operators/image_as_planes/__init__.pyi +2 -12
- bl_operators/node/__init__.pyi +14 -16
- bl_operators/object_quick_effects/__init__.pyi +3 -3
- bl_operators/presets/__init__.pyi +22 -25
- bl_operators/sequencer/__init__.pyi +76 -76
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/properties_collection/__init__.pyi +5 -19
- bl_ui/properties_constraint/__init__.pyi +79 -289
- bl_ui/properties_data_armature/__init__.pyi +9 -33
- bl_ui/properties_data_bone/__init__.pyi +10 -17
- bl_ui/properties_data_camera/__init__.pyi +14 -32
- bl_ui/properties_data_curve/__init__.pyi +69 -88
- bl_ui/properties_data_curves/__init__.pyi +4 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -2
- bl_ui/properties_data_gpencil/__init__.pyi +15 -50
- bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -6
- bl_ui/properties_data_light/__init__.pyi +12 -25
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
- bl_ui/properties_data_mesh/__init__.pyi +63 -72
- bl_ui/properties_data_metaball/__init__.pyi +5 -10
- bl_ui/properties_data_modifier/__init__.pyi +9 -23
- bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
- bl_ui/properties_data_speaker/__init__.pyi +5 -8
- bl_ui/properties_data_volume/__init__.pyi +7 -14
- bl_ui/properties_freestyle/__init__.pyi +9 -42
- bl_ui/properties_material/__init__.pyi +14 -40
- bl_ui/properties_material_gpencil/__init__.pyi +8 -32
- bl_ui/properties_object/__init__.pyi +13 -31
- bl_ui/properties_output/__init__.pyi +16 -43
- bl_ui/properties_paint_common/__init__.pyi +17 -17
- bl_ui/properties_particle/__init__.pyi +50 -135
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -1
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
- bl_ui/properties_physics_field/__init__.pyi +10 -26
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
- bl_ui/properties_physics_softbody/__init__.pyi +15 -43
- bl_ui/properties_render/__init__.pyi +54 -150
- bl_ui/properties_scene/__init__.pyi +29 -42
- bl_ui/properties_texture/__init__.pyi +26 -58
- bl_ui/properties_view_layer/__init__.pyi +16 -43
- bl_ui/properties_workspace/__init__.pyi +3 -9
- bl_ui/properties_world/__init__.pyi +10 -19
- bl_ui/space_clip/__init__.pyi +31 -93
- bl_ui/space_dopesheet/__init__.pyi +13 -66
- bl_ui/space_filebrowser/__init__.pyi +17 -38
- bl_ui/space_graph/__init__.pyi +1 -6
- bl_ui/space_image/__init__.pyi +190 -235
- bl_ui/space_nla/__init__.pyi +2 -11
- bl_ui/space_node/__init__.pyi +3 -16
- bl_ui/space_sequencer/__init__.pyi +34 -104
- bl_ui/space_time/__init__.pyi +3 -7
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
- bl_ui/space_userpref/__init__.pyi +76 -215
- bl_ui/space_view3d/__init__.pyi +91 -147
- bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
- bmesh/types/__init__.pyi +25 -25
- bpy/app/timers/__init__.pyi +6 -6
- bpy/types/__init__.pyi +113 -111
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +81 -81
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +63 -65
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- keyingsets_builtins/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -965
- mathutils/bvhtree/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240720.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
bmesh/types/__init__.pyi
CHANGED
|
@@ -204,11 +204,11 @@ class BMEdge:
|
|
|
204
204
|
"""
|
|
205
205
|
...
|
|
206
206
|
|
|
207
|
-
def copy_from(self, other:
|
|
207
|
+
def copy_from(self, other: typing.Self):
|
|
208
208
|
"""Copy values from another element of matching type.
|
|
209
209
|
|
|
210
210
|
:param other:
|
|
211
|
-
:type other:
|
|
211
|
+
:type other: typing.Self
|
|
212
212
|
"""
|
|
213
213
|
...
|
|
214
214
|
|
|
@@ -595,7 +595,7 @@ class BMFace:
|
|
|
595
595
|
"""
|
|
596
596
|
...
|
|
597
597
|
|
|
598
|
-
def copy(self, verts: bool = True, edges: bool = True) ->
|
|
598
|
+
def copy(self, verts: bool = True, edges: bool = True) -> typing.Self:
|
|
599
599
|
"""Make a copy of this face.
|
|
600
600
|
|
|
601
601
|
:param verts: When set, the faces verts will be duplicated too.
|
|
@@ -603,23 +603,23 @@ class BMFace:
|
|
|
603
603
|
:param edges: When set, the faces edges will be duplicated too.
|
|
604
604
|
:type edges: bool
|
|
605
605
|
:return: The newly created face.
|
|
606
|
-
:rtype:
|
|
606
|
+
:rtype: typing.Self
|
|
607
607
|
"""
|
|
608
608
|
...
|
|
609
609
|
|
|
610
|
-
def copy_from(self, other:
|
|
610
|
+
def copy_from(self, other: typing.Self):
|
|
611
611
|
"""Copy values from another element of matching type.
|
|
612
612
|
|
|
613
613
|
:param other:
|
|
614
|
-
:type other:
|
|
614
|
+
:type other: typing.Self
|
|
615
615
|
"""
|
|
616
616
|
...
|
|
617
617
|
|
|
618
|
-
def copy_from_face_interp(self, face:
|
|
618
|
+
def copy_from_face_interp(self, face: typing.Self, vert: bool = True):
|
|
619
619
|
"""Interpolate the customdata from another face onto this one (faces should overlap).
|
|
620
620
|
|
|
621
621
|
:param face: The face to interpolate data from.
|
|
622
|
-
:type face:
|
|
622
|
+
:type face: typing.Self
|
|
623
623
|
:param vert: When True, also copy vertex data.
|
|
624
624
|
:type vert: bool
|
|
625
625
|
"""
|
|
@@ -1041,7 +1041,7 @@ class BMLayerCollection:
|
|
|
1041
1041
|
"""
|
|
1042
1042
|
...
|
|
1043
1043
|
|
|
1044
|
-
def new(self, name: str | None) -> BMLayerItem:
|
|
1044
|
+
def new(self, name: str | None = "") -> BMLayerItem:
|
|
1045
1045
|
"""Create a new layer
|
|
1046
1046
|
|
|
1047
1047
|
:param name: Optional name argument (will be made unique).
|
|
@@ -1085,11 +1085,11 @@ class BMLayerItem:
|
|
|
1085
1085
|
:type: str
|
|
1086
1086
|
"""
|
|
1087
1087
|
|
|
1088
|
-
def copy_from(self, other:
|
|
1088
|
+
def copy_from(self, other: typing.Self):
|
|
1089
1089
|
"""Return a copy of the layer
|
|
1090
1090
|
|
|
1091
1091
|
:param other: Another layer to copy from.
|
|
1092
|
-
:type other:
|
|
1092
|
+
:type other: typing.Self
|
|
1093
1093
|
"""
|
|
1094
1094
|
...
|
|
1095
1095
|
|
|
@@ -1126,28 +1126,28 @@ class BMLoop:
|
|
|
1126
1126
|
:type: bool
|
|
1127
1127
|
"""
|
|
1128
1128
|
|
|
1129
|
-
link_loop_next:
|
|
1129
|
+
link_loop_next: typing.Self
|
|
1130
1130
|
""" The next face corner (read-only).
|
|
1131
1131
|
|
|
1132
|
-
:type:
|
|
1132
|
+
:type: typing.Self
|
|
1133
1133
|
"""
|
|
1134
1134
|
|
|
1135
|
-
link_loop_prev:
|
|
1135
|
+
link_loop_prev: typing.Self
|
|
1136
1136
|
""" The previous face corner (read-only).
|
|
1137
1137
|
|
|
1138
|
-
:type:
|
|
1138
|
+
:type: typing.Self
|
|
1139
1139
|
"""
|
|
1140
1140
|
|
|
1141
|
-
link_loop_radial_next:
|
|
1141
|
+
link_loop_radial_next: typing.Self
|
|
1142
1142
|
""" The next loop around the edge (read-only).
|
|
1143
1143
|
|
|
1144
|
-
:type:
|
|
1144
|
+
:type: typing.Self
|
|
1145
1145
|
"""
|
|
1146
1146
|
|
|
1147
|
-
link_loop_radial_prev:
|
|
1147
|
+
link_loop_radial_prev: typing.Self
|
|
1148
1148
|
""" The previous loop around the edge (read-only).
|
|
1149
1149
|
|
|
1150
|
-
:type:
|
|
1150
|
+
:type: typing.Self
|
|
1151
1151
|
"""
|
|
1152
1152
|
|
|
1153
1153
|
link_loops: BMElemSeq[BMLoop]
|
|
@@ -1195,11 +1195,11 @@ class BMLoop:
|
|
|
1195
1195
|
"""
|
|
1196
1196
|
...
|
|
1197
1197
|
|
|
1198
|
-
def copy_from(self, other:
|
|
1198
|
+
def copy_from(self, other: typing.Self):
|
|
1199
1199
|
"""Copy values from another element of matching type.
|
|
1200
1200
|
|
|
1201
1201
|
:param other:
|
|
1202
|
-
:type other:
|
|
1202
|
+
:type other: typing.Self
|
|
1203
1203
|
"""
|
|
1204
1204
|
...
|
|
1205
1205
|
|
|
@@ -1379,11 +1379,11 @@ class BMVert:
|
|
|
1379
1379
|
"""
|
|
1380
1380
|
...
|
|
1381
1381
|
|
|
1382
|
-
def copy_from(self, other:
|
|
1382
|
+
def copy_from(self, other: typing.Self):
|
|
1383
1383
|
"""Copy values from another element of matching type.
|
|
1384
1384
|
|
|
1385
1385
|
:param other:
|
|
1386
|
-
:type other:
|
|
1386
|
+
:type other: typing.Self
|
|
1387
1387
|
"""
|
|
1388
1388
|
...
|
|
1389
1389
|
|
|
@@ -1617,11 +1617,11 @@ class BMesh:
|
|
|
1617
1617
|
"""Clear all mesh data."""
|
|
1618
1618
|
...
|
|
1619
1619
|
|
|
1620
|
-
def copy(self) ->
|
|
1620
|
+
def copy(self) -> typing.Self:
|
|
1621
1621
|
"""
|
|
1622
1622
|
|
|
1623
1623
|
:return: A copy of this BMesh.
|
|
1624
|
-
:rtype:
|
|
1624
|
+
:rtype: typing.Self
|
|
1625
1625
|
"""
|
|
1626
1626
|
...
|
|
1627
1627
|
|
bpy/app/timers/__init__.pyi
CHANGED
|
@@ -37,11 +37,11 @@ import typing_extensions
|
|
|
37
37
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
38
38
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
39
39
|
|
|
40
|
-
def is_registered(function: collections.abc.Callable[[], float]) -> bool:
|
|
40
|
+
def is_registered(function: collections.abc.Callable[[], float | None]) -> bool:
|
|
41
41
|
"""Check if this function is registered as a timer.
|
|
42
42
|
|
|
43
43
|
:param function: Function to check.
|
|
44
|
-
:type function: collections.abc.Callable[[], float]
|
|
44
|
+
:type function: collections.abc.Callable[[], float | None]
|
|
45
45
|
:return: True when this function is registered, otherwise False.
|
|
46
46
|
:rtype: bool
|
|
47
47
|
"""
|
|
@@ -49,7 +49,7 @@ def is_registered(function: collections.abc.Callable[[], float]) -> bool:
|
|
|
49
49
|
...
|
|
50
50
|
|
|
51
51
|
def register(
|
|
52
|
-
function: collections.abc.Callable[[], float],
|
|
52
|
+
function: collections.abc.Callable[[], float | None],
|
|
53
53
|
first_interval: float | None = 0,
|
|
54
54
|
persistent: bool | None = False,
|
|
55
55
|
):
|
|
@@ -60,7 +60,7 @@ def register(
|
|
|
60
60
|
functools.partial can be used to assign some parameters.
|
|
61
61
|
|
|
62
62
|
:param function: The function that should called.
|
|
63
|
-
:type function: collections.abc.Callable[[], float]
|
|
63
|
+
:type function: collections.abc.Callable[[], float | None]
|
|
64
64
|
:param first_interval: Seconds until the callback should be called the first time.
|
|
65
65
|
:type first_interval: float | None
|
|
66
66
|
:param persistent: Don't remove timer when a new file is loaded.
|
|
@@ -69,11 +69,11 @@ def register(
|
|
|
69
69
|
|
|
70
70
|
...
|
|
71
71
|
|
|
72
|
-
def unregister(function: collections.abc.Callable[[], float]):
|
|
72
|
+
def unregister(function: collections.abc.Callable[[], float | None]):
|
|
73
73
|
"""Unregister timer.
|
|
74
74
|
|
|
75
75
|
:param function: Function to unregister.
|
|
76
|
-
:type function: collections.abc.Callable[[], float]
|
|
76
|
+
:type function: collections.abc.Callable[[], float | None]
|
|
77
77
|
"""
|
|
78
78
|
|
|
79
79
|
...
|