fake-bpy-module 20250923__py3-none-any.whl → 20250925__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_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +26 -0
- bl_ui/space_clip/__init__.pyi +83 -20
- bl_ui/space_image/__init__.pyi +26 -18
- bl_ui/space_sequencer/__init__.pyi +0 -26
- bl_ui/space_view3d/__init__.pyi +7 -0
- bmesh/types/__init__.pyi +8 -7
- bpy/ops/node/__init__.pyi +37 -0
- bpy/ops/object/__init__.pyi +8 -0
- bpy/ops/sculpt/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +0 -6
- bpy/stub_internal/rna_enums/__init__.pyi +0 -1
- bpy/types/__init__.pyi +32795 -32418
- bpy_extras/io_utils/__init__.pyi +2 -1
- {fake_bpy_module-20250923.dist-info → fake_bpy_module-20250925.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250923.dist-info → fake_bpy_module-20250925.dist-info}/RECORD +22 -19
- {fake_bpy_module-20250923.dist-info → fake_bpy_module-20250925.dist-info}/top_level.txt +1 -0
- mathutils/bvhtree/__init__.pyi +3 -2
- {fake_bpy_module-20250923.dist-info → fake_bpy_module-20250925.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import collections.abc
|
|
3
|
+
import typing_extensions
|
|
4
|
+
import numpy.typing as npt
|
|
5
|
+
|
|
6
|
+
def load_handler(_) -> None: ...
|
|
7
|
+
def register() -> None: ...
|
|
8
|
+
def unregister() -> None: ...
|
|
9
|
+
def update_factory_startup_grease_pencils() -> None: ...
|
|
10
|
+
def update_factory_startup_scenes() -> None: ...
|
|
11
|
+
def update_factory_startup_screens() -> None: ...
|
|
File without changes
|
|
@@ -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.
|
|
@@ -207,6 +207,32 @@ class NODE_MT_category_shader_texture(_bpy_types.Menu):
|
|
|
207
207
|
:param _context:
|
|
208
208
|
"""
|
|
209
209
|
|
|
210
|
+
class NODE_MT_category_shader_utilities(_bpy_types.Menu):
|
|
211
|
+
bl_idname: typing.Any
|
|
212
|
+
bl_label: typing.Any
|
|
213
|
+
bl_rna: typing.Any
|
|
214
|
+
id_data: typing.Any
|
|
215
|
+
|
|
216
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
217
|
+
"""
|
|
218
|
+
|
|
219
|
+
:return: The RNA type or default when not found.
|
|
220
|
+
:rtype: bpy.types.Struct
|
|
221
|
+
"""
|
|
222
|
+
|
|
223
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
224
|
+
"""
|
|
225
|
+
|
|
226
|
+
:return: The class or default when not found.
|
|
227
|
+
:rtype: typing.Any
|
|
228
|
+
"""
|
|
229
|
+
|
|
230
|
+
def draw(self, context) -> None:
|
|
231
|
+
"""
|
|
232
|
+
|
|
233
|
+
:param context:
|
|
234
|
+
"""
|
|
235
|
+
|
|
210
236
|
class NODE_MT_category_shader_vector(_bpy_types.Menu):
|
|
211
237
|
bl_idname: typing.Any
|
|
212
238
|
bl_label: typing.Any
|
bl_ui/space_clip/__init__.pyi
CHANGED
|
@@ -1094,13 +1094,13 @@ class CLIP_PT_marker(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
|
1094
1094
|
:param context:
|
|
1095
1095
|
"""
|
|
1096
1096
|
|
|
1097
|
-
class
|
|
1097
|
+
class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, _bpy_types.Panel):
|
|
1098
|
+
bl_category: typing.Any
|
|
1098
1099
|
bl_label: typing.Any
|
|
1099
|
-
|
|
1100
|
+
bl_options: typing.Any
|
|
1100
1101
|
bl_region_type: typing.Any
|
|
1101
1102
|
bl_rna: typing.Any
|
|
1102
1103
|
bl_space_type: typing.Any
|
|
1103
|
-
bl_ui_units_x: typing.Any
|
|
1104
1104
|
id_data: typing.Any
|
|
1105
1105
|
|
|
1106
1106
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -1117,16 +1117,36 @@ class CLIP_PT_marker_display(_bpy_types.Panel):
|
|
|
1117
1117
|
:rtype: typing.Any
|
|
1118
1118
|
"""
|
|
1119
1119
|
|
|
1120
|
-
|
|
1120
|
+
class CLIP_PT_mask_animation(
|
|
1121
|
+
bl_ui.properties_mask_common.MASK_PT_animation, _bpy_types.Panel
|
|
1122
|
+
):
|
|
1123
|
+
bl_category: typing.Any
|
|
1124
|
+
bl_label: typing.Any
|
|
1125
|
+
bl_options: typing.Any
|
|
1126
|
+
bl_region_type: typing.Any
|
|
1127
|
+
bl_rna: typing.Any
|
|
1128
|
+
bl_space_type: typing.Any
|
|
1129
|
+
id_data: typing.Any
|
|
1130
|
+
|
|
1131
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1121
1132
|
"""
|
|
1122
1133
|
|
|
1123
|
-
:
|
|
1134
|
+
:return: The RNA type or default when not found.
|
|
1135
|
+
:rtype: bpy.types.Struct
|
|
1124
1136
|
"""
|
|
1125
1137
|
|
|
1126
|
-
|
|
1138
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1139
|
+
"""
|
|
1140
|
+
|
|
1141
|
+
:return: The class or default when not found.
|
|
1142
|
+
:rtype: typing.Any
|
|
1143
|
+
"""
|
|
1144
|
+
|
|
1145
|
+
class CLIP_PT_mask_layers(
|
|
1146
|
+
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
1147
|
+
):
|
|
1127
1148
|
bl_category: typing.Any
|
|
1128
1149
|
bl_label: typing.Any
|
|
1129
|
-
bl_options: typing.Any
|
|
1130
1150
|
bl_region_type: typing.Any
|
|
1131
1151
|
bl_rna: typing.Any
|
|
1132
1152
|
bl_space_type: typing.Any
|
|
@@ -1146,9 +1166,7 @@ class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, _bpy_types.Panel):
|
|
|
1146
1166
|
:rtype: typing.Any
|
|
1147
1167
|
"""
|
|
1148
1168
|
|
|
1149
|
-
class
|
|
1150
|
-
bl_ui.properties_mask_common.MASK_PT_animation, _bpy_types.Panel
|
|
1151
|
-
):
|
|
1169
|
+
class CLIP_PT_objects(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
1152
1170
|
bl_category: typing.Any
|
|
1153
1171
|
bl_label: typing.Any
|
|
1154
1172
|
bl_options: typing.Any
|
|
@@ -1171,13 +1189,18 @@ class CLIP_PT_mask_animation(
|
|
|
1171
1189
|
:rtype: typing.Any
|
|
1172
1190
|
"""
|
|
1173
1191
|
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1192
|
+
def draw(self, context) -> None:
|
|
1193
|
+
"""
|
|
1194
|
+
|
|
1195
|
+
:param context:
|
|
1196
|
+
"""
|
|
1197
|
+
|
|
1198
|
+
class CLIP_PT_overlay(_bpy_types.Panel):
|
|
1177
1199
|
bl_label: typing.Any
|
|
1178
1200
|
bl_region_type: typing.Any
|
|
1179
1201
|
bl_rna: typing.Any
|
|
1180
1202
|
bl_space_type: typing.Any
|
|
1203
|
+
bl_ui_units_x: typing.Any
|
|
1181
1204
|
id_data: typing.Any
|
|
1182
1205
|
|
|
1183
1206
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -1194,11 +1217,15 @@ class CLIP_PT_mask_display(
|
|
|
1194
1217
|
:rtype: typing.Any
|
|
1195
1218
|
"""
|
|
1196
1219
|
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1220
|
+
def draw(self, _context) -> None:
|
|
1221
|
+
"""
|
|
1222
|
+
|
|
1223
|
+
:param _context:
|
|
1224
|
+
"""
|
|
1225
|
+
|
|
1226
|
+
class CLIP_PT_overlay_display(_bpy_types.Panel):
|
|
1201
1227
|
bl_label: typing.Any
|
|
1228
|
+
bl_parent_id: typing.Any
|
|
1202
1229
|
bl_region_type: typing.Any
|
|
1203
1230
|
bl_rna: typing.Any
|
|
1204
1231
|
bl_space_type: typing.Any
|
|
@@ -1218,10 +1245,15 @@ class CLIP_PT_mask_layers(
|
|
|
1218
1245
|
:rtype: typing.Any
|
|
1219
1246
|
"""
|
|
1220
1247
|
|
|
1221
|
-
|
|
1222
|
-
|
|
1248
|
+
def draw(self, context) -> None:
|
|
1249
|
+
"""
|
|
1250
|
+
|
|
1251
|
+
:param context:
|
|
1252
|
+
"""
|
|
1253
|
+
|
|
1254
|
+
class CLIP_PT_overlay_guides(_bpy_types.Panel):
|
|
1223
1255
|
bl_label: typing.Any
|
|
1224
|
-
|
|
1256
|
+
bl_parent_id: typing.Any
|
|
1225
1257
|
bl_region_type: typing.Any
|
|
1226
1258
|
bl_rna: typing.Any
|
|
1227
1259
|
bl_space_type: typing.Any
|
|
@@ -1247,6 +1279,37 @@ class CLIP_PT_objects(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
|
1247
1279
|
:param context:
|
|
1248
1280
|
"""
|
|
1249
1281
|
|
|
1282
|
+
class CLIP_PT_overlay_mask(
|
|
1283
|
+
bl_ui.properties_mask_common.MASK_PT_display, _bpy_types.Panel
|
|
1284
|
+
):
|
|
1285
|
+
bl_label: typing.Any
|
|
1286
|
+
bl_parent_id: typing.Any
|
|
1287
|
+
bl_region_type: typing.Any
|
|
1288
|
+
bl_rna: typing.Any
|
|
1289
|
+
bl_space_type: typing.Any
|
|
1290
|
+
id_data: typing.Any
|
|
1291
|
+
|
|
1292
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1293
|
+
"""
|
|
1294
|
+
|
|
1295
|
+
:return: The RNA type or default when not found.
|
|
1296
|
+
:rtype: bpy.types.Struct
|
|
1297
|
+
"""
|
|
1298
|
+
|
|
1299
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1300
|
+
"""
|
|
1301
|
+
|
|
1302
|
+
:return: The class or default when not found.
|
|
1303
|
+
:rtype: typing.Any
|
|
1304
|
+
"""
|
|
1305
|
+
|
|
1306
|
+
@classmethod
|
|
1307
|
+
def poll(cls, context) -> None:
|
|
1308
|
+
"""
|
|
1309
|
+
|
|
1310
|
+
:param context:
|
|
1311
|
+
"""
|
|
1312
|
+
|
|
1250
1313
|
class CLIP_PT_plane_track(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1251
1314
|
bl_category: typing.Any
|
|
1252
1315
|
bl_label: typing.Any
|
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -908,9 +908,10 @@ class IMAGE_PT_mask_animation(
|
|
|
908
908
|
:rtype: typing.Any
|
|
909
909
|
"""
|
|
910
910
|
|
|
911
|
-
class
|
|
912
|
-
bl_ui.properties_mask_common.
|
|
911
|
+
class IMAGE_PT_mask_layers(
|
|
912
|
+
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
913
913
|
):
|
|
914
|
+
bl_category: typing.Any
|
|
914
915
|
bl_label: typing.Any
|
|
915
916
|
bl_region_type: typing.Any
|
|
916
917
|
bl_rna: typing.Any
|
|
@@ -931,14 +932,12 @@ class IMAGE_PT_mask_display(
|
|
|
931
932
|
:rtype: typing.Any
|
|
932
933
|
"""
|
|
933
934
|
|
|
934
|
-
class
|
|
935
|
-
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
936
|
-
):
|
|
937
|
-
bl_category: typing.Any
|
|
935
|
+
class IMAGE_PT_overlay(_bpy_types.Panel):
|
|
938
936
|
bl_label: typing.Any
|
|
939
937
|
bl_region_type: typing.Any
|
|
940
938
|
bl_rna: typing.Any
|
|
941
939
|
bl_space_type: typing.Any
|
|
940
|
+
bl_ui_units_x: typing.Any
|
|
942
941
|
id_data: typing.Any
|
|
943
942
|
|
|
944
943
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -955,12 +954,18 @@ class IMAGE_PT_mask_layers(
|
|
|
955
954
|
:rtype: typing.Any
|
|
956
955
|
"""
|
|
957
956
|
|
|
958
|
-
|
|
957
|
+
def draw(self, context) -> None:
|
|
958
|
+
"""
|
|
959
|
+
|
|
960
|
+
:param context:
|
|
961
|
+
"""
|
|
962
|
+
|
|
963
|
+
class IMAGE_PT_overlay_guides(_bpy_types.Panel):
|
|
959
964
|
bl_label: typing.Any
|
|
965
|
+
bl_parent_id: typing.Any
|
|
960
966
|
bl_region_type: typing.Any
|
|
961
967
|
bl_rna: typing.Any
|
|
962
968
|
bl_space_type: typing.Any
|
|
963
|
-
bl_ui_units_x: typing.Any
|
|
964
969
|
id_data: typing.Any
|
|
965
970
|
|
|
966
971
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -983,7 +988,14 @@ class IMAGE_PT_overlay(_bpy_types.Panel):
|
|
|
983
988
|
:param context:
|
|
984
989
|
"""
|
|
985
990
|
|
|
986
|
-
|
|
991
|
+
@classmethod
|
|
992
|
+
def poll(cls, context) -> None:
|
|
993
|
+
"""
|
|
994
|
+
|
|
995
|
+
:param context:
|
|
996
|
+
"""
|
|
997
|
+
|
|
998
|
+
class IMAGE_PT_overlay_image(_bpy_types.Panel):
|
|
987
999
|
bl_label: typing.Any
|
|
988
1000
|
bl_parent_id: typing.Any
|
|
989
1001
|
bl_region_type: typing.Any
|
|
@@ -1011,14 +1023,9 @@ class IMAGE_PT_overlay_guides(_bpy_types.Panel):
|
|
|
1011
1023
|
:param context:
|
|
1012
1024
|
"""
|
|
1013
1025
|
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
:param context:
|
|
1019
|
-
"""
|
|
1020
|
-
|
|
1021
|
-
class IMAGE_PT_overlay_image(_bpy_types.Panel):
|
|
1026
|
+
class IMAGE_PT_overlay_mask(
|
|
1027
|
+
bl_ui.properties_mask_common.MASK_PT_display, _bpy_types.Panel
|
|
1028
|
+
):
|
|
1022
1029
|
bl_label: typing.Any
|
|
1023
1030
|
bl_parent_id: typing.Any
|
|
1024
1031
|
bl_region_type: typing.Any
|
|
@@ -1040,7 +1047,8 @@ class IMAGE_PT_overlay_image(_bpy_types.Panel):
|
|
|
1040
1047
|
:rtype: typing.Any
|
|
1041
1048
|
"""
|
|
1042
1049
|
|
|
1043
|
-
|
|
1050
|
+
@classmethod
|
|
1051
|
+
def poll(cls, context) -> None:
|
|
1044
1052
|
"""
|
|
1045
1053
|
|
|
1046
1054
|
:param context:
|
|
@@ -168,32 +168,6 @@ class SEQUENCER_MT_add_empty(_bpy_types.Menu):
|
|
|
168
168
|
:param _context:
|
|
169
169
|
"""
|
|
170
170
|
|
|
171
|
-
class SEQUENCER_MT_add_scene(_bpy_types.Menu):
|
|
172
|
-
bl_label: typing.Any
|
|
173
|
-
bl_rna: typing.Any
|
|
174
|
-
bl_translation_context: typing.Any
|
|
175
|
-
id_data: typing.Any
|
|
176
|
-
|
|
177
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
178
|
-
"""
|
|
179
|
-
|
|
180
|
-
:return: The RNA type or default when not found.
|
|
181
|
-
:rtype: bpy.types.Struct
|
|
182
|
-
"""
|
|
183
|
-
|
|
184
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
185
|
-
"""
|
|
186
|
-
|
|
187
|
-
:return: The class or default when not found.
|
|
188
|
-
:rtype: typing.Any
|
|
189
|
-
"""
|
|
190
|
-
|
|
191
|
-
def draw(self, context) -> None:
|
|
192
|
-
"""
|
|
193
|
-
|
|
194
|
-
:param context:
|
|
195
|
-
"""
|
|
196
|
-
|
|
197
171
|
class SEQUENCER_MT_add_transitions(_bpy_types.Menu):
|
|
198
172
|
bl_label: typing.Any
|
|
199
173
|
bl_rna: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -377,6 +377,13 @@ class VIEW3D_AST_brush_texture_paint(View3DAssetShelf, _bpy_types.AssetShelf):
|
|
|
377
377
|
:rtype: typing.Any
|
|
378
378
|
"""
|
|
379
379
|
|
|
380
|
+
@classmethod
|
|
381
|
+
def poll(cls, context) -> None:
|
|
382
|
+
"""
|
|
383
|
+
|
|
384
|
+
:param context:
|
|
385
|
+
"""
|
|
386
|
+
|
|
380
387
|
class VIEW3D_AST_brush_vertex_paint(View3DAssetShelf, _bpy_types.AssetShelf):
|
|
381
388
|
bl_activate_operator: typing.Any
|
|
382
389
|
bl_default_preview_size: 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.
|
|
@@ -1663,7 +1664,7 @@ class BMesh:
|
|
|
1663
1664
|
"""Update normals of mesh faces and verts."""
|
|
1664
1665
|
|
|
1665
1666
|
def select_flush(self, select: bool) -> None:
|
|
1666
|
-
"""Flush selection, independent of the current selection mode.
|
|
1667
|
+
"""Flush selection from vertices, independent of the current selection mode.
|
|
1667
1668
|
|
|
1668
1669
|
:param select: flush selection or de-selected elements.
|
|
1669
1670
|
:type select: bool
|
|
@@ -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
|
@@ -1267,6 +1267,43 @@ def format_string_item_remove(
|
|
|
1267
1267
|
:type undo: bool | None
|
|
1268
1268
|
"""
|
|
1269
1269
|
|
|
1270
|
+
def geometry_nodes_viewer_item_add(
|
|
1271
|
+
execution_context: int | str | None = None,
|
|
1272
|
+
undo: bool | None = None,
|
|
1273
|
+
/,
|
|
1274
|
+
) -> None:
|
|
1275
|
+
"""Add item below active item
|
|
1276
|
+
|
|
1277
|
+
:type execution_context: int | str | None
|
|
1278
|
+
:type undo: bool | None
|
|
1279
|
+
"""
|
|
1280
|
+
|
|
1281
|
+
def geometry_nodes_viewer_item_move(
|
|
1282
|
+
execution_context: int | str | None = None,
|
|
1283
|
+
undo: bool | None = None,
|
|
1284
|
+
/,
|
|
1285
|
+
*,
|
|
1286
|
+
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1287
|
+
) -> None:
|
|
1288
|
+
"""Move active item
|
|
1289
|
+
|
|
1290
|
+
:type execution_context: int | str | None
|
|
1291
|
+
:type undo: bool | None
|
|
1292
|
+
:param direction: Direction, Move direction
|
|
1293
|
+
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1294
|
+
"""
|
|
1295
|
+
|
|
1296
|
+
def geometry_nodes_viewer_item_remove(
|
|
1297
|
+
execution_context: int | str | None = None,
|
|
1298
|
+
undo: bool | None = None,
|
|
1299
|
+
/,
|
|
1300
|
+
) -> None:
|
|
1301
|
+
"""Remove active item
|
|
1302
|
+
|
|
1303
|
+
:type execution_context: int | str | None
|
|
1304
|
+
:type undo: bool | None
|
|
1305
|
+
"""
|
|
1306
|
+
|
|
1270
1307
|
def gltf_settings_node_operator(
|
|
1271
1308
|
execution_context: int | str | None = None,
|
|
1272
1309
|
undo: bool | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1962,11 +1962,15 @@ def join_shapes(
|
|
|
1962
1962
|
execution_context: int | str | None = None,
|
|
1963
1963
|
undo: bool | None = None,
|
|
1964
1964
|
/,
|
|
1965
|
+
*,
|
|
1966
|
+
use_mirror: bool | None = False,
|
|
1965
1967
|
) -> None:
|
|
1966
1968
|
"""Add the vertex positions of selected objects as shape keys or update existing shape keys with matching names
|
|
1967
1969
|
|
|
1968
1970
|
:type execution_context: int | str | None
|
|
1969
1971
|
:type undo: bool | None
|
|
1972
|
+
:param use_mirror: Mirror, Mirror the new shape key values
|
|
1973
|
+
:type use_mirror: bool | None
|
|
1970
1974
|
"""
|
|
1971
1975
|
|
|
1972
1976
|
def join_uvs(
|
|
@@ -4718,11 +4722,15 @@ def update_shapes(
|
|
|
4718
4722
|
execution_context: int | str | None = None,
|
|
4719
4723
|
undo: bool | None = None,
|
|
4720
4724
|
/,
|
|
4725
|
+
*,
|
|
4726
|
+
use_mirror: bool | None = False,
|
|
4721
4727
|
) -> None:
|
|
4722
4728
|
"""Update existing shape keys with the vertex positions of selected objects with matching names
|
|
4723
4729
|
|
|
4724
4730
|
:type execution_context: int | str | None
|
|
4725
4731
|
:type undo: bool | None
|
|
4732
|
+
:param use_mirror: Mirror, Mirror the new shape key values
|
|
4733
|
+
:type use_mirror: bool | None
|
|
4726
4734
|
"""
|
|
4727
4735
|
|
|
4728
4736
|
def vertex_group_add(
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -1395,7 +1395,7 @@ def uv_sculpt_relax(
|
|
|
1395
1395
|
/,
|
|
1396
1396
|
*,
|
|
1397
1397
|
use_invert: bool | None = False,
|
|
1398
|
-
relax_method: typing.Literal["LAPLACIAN", "HC", "COTAN"] | None = "
|
|
1398
|
+
relax_method: typing.Literal["LAPLACIAN", "HC", "COTAN"] | None = "LAPLACIAN",
|
|
1399
1399
|
) -> None:
|
|
1400
1400
|
"""Relax UVs
|
|
1401
1401
|
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -44,7 +44,6 @@ def alembic_export(
|
|
|
44
44
|
sh_open: float | None = 0.0,
|
|
45
45
|
sh_close: float | None = 1.0,
|
|
46
46
|
selected: bool | None = False,
|
|
47
|
-
visible_objects_only: bool | None = False,
|
|
48
47
|
flatten: bool | None = False,
|
|
49
48
|
collection: str = "",
|
|
50
49
|
uvs: bool | None = True,
|
|
@@ -143,8 +142,6 @@ def alembic_export(
|
|
|
143
142
|
:type sh_close: float | None
|
|
144
143
|
:param selected: Selected Objects Only, Export only selected objects
|
|
145
144
|
:type selected: bool | None
|
|
146
|
-
:param visible_objects_only: Visible Objects Only, Export only objects that are visible
|
|
147
|
-
:type visible_objects_only: bool | None
|
|
148
145
|
:param flatten: Flatten Hierarchy, Do not preserve objects parent/children relationship
|
|
149
146
|
:type flatten: bool | None
|
|
150
147
|
:param collection: Collection
|
|
@@ -4822,7 +4819,6 @@ def usd_export(
|
|
|
4822
4819
|
sort_method: str | None = "",
|
|
4823
4820
|
filter_glob: str = "*.usd",
|
|
4824
4821
|
selected_objects_only: bool | None = False,
|
|
4825
|
-
visible_objects_only: bool | None = True,
|
|
4826
4822
|
collection: str = "",
|
|
4827
4823
|
export_animation: bool | None = False,
|
|
4828
4824
|
export_hair: bool | None = False,
|
|
@@ -4950,8 +4946,6 @@ def usd_export(
|
|
|
4950
4946
|
:type filter_glob: str
|
|
4951
4947
|
:param selected_objects_only: Selection Only, Only export selected objects. Unselected parents of selected objects are exported as empty transform
|
|
4952
4948
|
:type selected_objects_only: bool | None
|
|
4953
|
-
:param visible_objects_only: Visible Only, Only export visible objects. Invisible parents of exported objects are exported as empty transforms
|
|
4954
|
-
:type visible_objects_only: bool | None
|
|
4955
4949
|
:param collection: Collection
|
|
4956
4950
|
:type collection: str
|
|
4957
4951
|
:param export_animation: Animation, Export all frames in the render frame range, rather than only the current frame
|
|
@@ -1006,7 +1006,6 @@ type IconItems = typing.Literal[
|
|
|
1006
1006
|
"PRESET", # PRESET.
|
|
1007
1007
|
"RENDER_ANIMATION", # RENDER_ANIMATION.
|
|
1008
1008
|
"RENDER_STILL", # RENDER_STILL.
|
|
1009
|
-
"RNA_ADD", # RNA_ADD.
|
|
1010
1009
|
"RNA", # RNA.
|
|
1011
1010
|
"STRANDS", # STRANDS.
|
|
1012
1011
|
"UGLYPACKAGE", # UGLYPACKAGE.
|