fake-bpy-module 20250616__py3-none-any.whl → 20250627__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_operators/image_as_planes/__init__.pyi +0 -4
- bl_ui/properties_grease_pencil_common/__init__.pyi +4 -4
- bl_ui/space_dopesheet/__init__.pyi +26 -0
- bl_ui/space_graph/__init__.pyi +28 -0
- bl_ui/space_nla/__init__.pyi +26 -0
- bl_ui/space_node/__init__.pyi +36 -0
- bl_ui/space_sequencer/__init__.pyi +51 -0
- bl_ui/space_time/__init__.pyi +1 -30
- blend_render_info/__init__.pyi +1 -0
- blendfile_header/__init__.pyi +48 -0
- bmesh/ops/__init__.pyi +93 -46
- bpy/ops/export_scene/__init__.pyi +1 -1
- bpy/ops/graph/__init__.pyi +7 -1
- bpy/ops/import_scene/__init__.pyi +3 -0
- bpy/ops/mesh/__init__.pyi +2 -2
- bpy/ops/node/__init__.pyi +9 -0
- bpy/ops/transform/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +10 -0
- bpy/types/__init__.pyi +3249 -5749
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/RECORD +28 -28
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/top_level.txt +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu/types/__init__.pyi +4 -18
- gpu_extras/batch/__init__.pyi +2 -3
- keyingsets_utils/__init__.pyi +2 -0
- bgl/__init__.pyi +0 -4256
- {bgl → blendfile_header}/py.typed +0 -0
- {fake_bpy_module-20250616.dist-info → fake_bpy_module-20250627.dist-info}/WHEEL +0 -0
bmesh/ops/__init__.pyi
CHANGED
|
@@ -53,7 +53,8 @@ def beautify_fill(
|
|
|
53
53
|
:type use_restrict_tag: bool
|
|
54
54
|
:param method: Method to define what is beautiful.
|
|
55
55
|
:type method: typing.Literal['AREA','ANGLE']
|
|
56
|
-
:return: geom:
|
|
56
|
+
:return: geom:
|
|
57
|
+
New flipped faces and edges.
|
|
57
58
|
|
|
58
59
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
59
60
|
:rtype: dict[str, typing.Any]
|
|
@@ -127,15 +128,18 @@ def bevel(
|
|
|
127
128
|
:type custom_profile: bpy.types.bpy_struct | None
|
|
128
129
|
:param vmesh_method: The method to use to create meshes at intersections.
|
|
129
130
|
:type vmesh_method: typing.Literal['ADJ','CUTOFF']
|
|
130
|
-
:return: faces:
|
|
131
|
+
:return: faces:
|
|
132
|
+
Output faces.
|
|
131
133
|
|
|
132
134
|
type list of (`bmesh.types.BMFace`)
|
|
133
135
|
|
|
134
|
-
edges:
|
|
136
|
+
edges:
|
|
137
|
+
Output edges.
|
|
135
138
|
|
|
136
139
|
type list of (`bmesh.types.BMEdge`)
|
|
137
140
|
|
|
138
|
-
verts:
|
|
141
|
+
verts:
|
|
142
|
+
Output verts.
|
|
139
143
|
|
|
140
144
|
type list of (`bmesh.types.BMVert`)
|
|
141
145
|
:rtype: dict[str, typing.Any]
|
|
@@ -157,7 +161,8 @@ def bisect_edges(
|
|
|
157
161
|
:param cuts: Number of cuts.
|
|
158
162
|
:type cuts: int
|
|
159
163
|
:param edge_percents: Undocumented.
|
|
160
|
-
:return: geom_split:
|
|
164
|
+
:return: geom_split:
|
|
165
|
+
Newly created vertices and edges.
|
|
161
166
|
|
|
162
167
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
163
168
|
:rtype: dict[str, typing.Any]
|
|
@@ -193,11 +198,13 @@ def bisect_plane(
|
|
|
193
198
|
:type clear_outer: bool
|
|
194
199
|
:param clear_inner: When enabled. remove all geometry on the negative side of the plane.
|
|
195
200
|
:type clear_inner: bool
|
|
196
|
-
:return: geom_cut:
|
|
201
|
+
:return: geom_cut:
|
|
202
|
+
Output geometry aligned with the plane (new and existing).
|
|
197
203
|
|
|
198
204
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`)
|
|
199
205
|
|
|
200
|
-
geom:
|
|
206
|
+
geom:
|
|
207
|
+
Input and output geometry (result of cut).
|
|
201
208
|
|
|
202
209
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
203
210
|
:rtype: dict[str, typing.Any]
|
|
@@ -241,11 +248,13 @@ def bridge_loops(
|
|
|
241
248
|
:type merge_factor: float
|
|
242
249
|
:param twist_offset: Twist offset for closed loops.
|
|
243
250
|
:type twist_offset: int
|
|
244
|
-
:return: faces:
|
|
251
|
+
:return: faces:
|
|
252
|
+
New faces.
|
|
245
253
|
|
|
246
254
|
type list of (`bmesh.types.BMFace`)
|
|
247
255
|
|
|
248
|
-
edges:
|
|
256
|
+
edges:
|
|
257
|
+
New edges.
|
|
249
258
|
|
|
250
259
|
type list of (`bmesh.types.BMEdge`)
|
|
251
260
|
:rtype: dict[str, typing.Any]
|
|
@@ -378,11 +387,13 @@ def contextual_create(
|
|
|
378
387
|
:type mat_nr: int
|
|
379
388
|
:param use_smooth: Smooth to use.
|
|
380
389
|
:type use_smooth: bool
|
|
381
|
-
:return: faces:
|
|
390
|
+
:return: faces:
|
|
391
|
+
Newly-made face(s).
|
|
382
392
|
|
|
383
393
|
type list of (`bmesh.types.BMFace`)
|
|
384
394
|
|
|
385
|
-
edges:
|
|
395
|
+
edges:
|
|
396
|
+
Newly-made edge(s).
|
|
386
397
|
|
|
387
398
|
type list of (`bmesh.types.BMEdge`)
|
|
388
399
|
:rtype: dict[str, typing.Any]
|
|
@@ -453,7 +464,8 @@ def create_circle(
|
|
|
453
464
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
454
465
|
:param calc_uvs: Calculate default UVs.
|
|
455
466
|
:type calc_uvs: bool
|
|
456
|
-
:return: verts:
|
|
467
|
+
:return: verts:
|
|
468
|
+
Output verts.
|
|
457
469
|
|
|
458
470
|
type list of (`bmesh.types.BMVert`)
|
|
459
471
|
:rtype: dict[str, typing.Any]
|
|
@@ -491,7 +503,8 @@ def create_cone(
|
|
|
491
503
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
492
504
|
:param calc_uvs: Calculate default UVs.
|
|
493
505
|
:type calc_uvs: bool
|
|
494
|
-
:return: verts:
|
|
506
|
+
:return: verts:
|
|
507
|
+
Output verts.
|
|
495
508
|
|
|
496
509
|
type list of (`bmesh.types.BMVert`)
|
|
497
510
|
:rtype: dict[str, typing.Any]
|
|
@@ -514,7 +527,8 @@ def create_cube(
|
|
|
514
527
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
515
528
|
:param calc_uvs: Calculate default UVs.
|
|
516
529
|
:type calc_uvs: bool
|
|
517
|
-
:return: verts:
|
|
530
|
+
:return: verts:
|
|
531
|
+
Output verts.
|
|
518
532
|
|
|
519
533
|
type list of (`bmesh.types.BMVert`)
|
|
520
534
|
:rtype: dict[str, typing.Any]
|
|
@@ -543,7 +557,8 @@ def create_grid(
|
|
|
543
557
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
544
558
|
:param calc_uvs: Calculate default UVs.
|
|
545
559
|
:type calc_uvs: bool
|
|
546
|
-
:return: verts:
|
|
560
|
+
:return: verts:
|
|
561
|
+
Output verts.
|
|
547
562
|
|
|
548
563
|
type list of (`bmesh.types.BMVert`)
|
|
549
564
|
:rtype: dict[str, typing.Any]
|
|
@@ -569,7 +584,8 @@ def create_icosphere(
|
|
|
569
584
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
570
585
|
:param calc_uvs: Calculate default UVs.
|
|
571
586
|
:type calc_uvs: bool
|
|
572
|
-
:return: verts:
|
|
587
|
+
:return: verts:
|
|
588
|
+
Output verts.
|
|
573
589
|
|
|
574
590
|
type list of (`bmesh.types.BMVert`)
|
|
575
591
|
:rtype: dict[str, typing.Any]
|
|
@@ -589,7 +605,8 @@ def create_monkey(
|
|
|
589
605
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
590
606
|
:param calc_uvs: Calculate default UVs.
|
|
591
607
|
:type calc_uvs: bool
|
|
592
|
-
:return: verts:
|
|
608
|
+
:return: verts:
|
|
609
|
+
Output verts.
|
|
593
610
|
|
|
594
611
|
type list of (`bmesh.types.BMVert`)
|
|
595
612
|
:rtype: dict[str, typing.Any]
|
|
@@ -618,7 +635,8 @@ def create_uvsphere(
|
|
|
618
635
|
:type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
|
|
619
636
|
:param calc_uvs: Calculate default UVs.
|
|
620
637
|
:type calc_uvs: bool
|
|
621
|
-
:return: verts:
|
|
638
|
+
:return: verts:
|
|
639
|
+
Output verts.
|
|
622
640
|
|
|
623
641
|
type list of (`bmesh.types.BMVert`)
|
|
624
642
|
:rtype: dict[str, typing.Any]
|
|
@@ -635,7 +653,8 @@ def create_vert(
|
|
|
635
653
|
:type bm: bmesh.types.BMesh
|
|
636
654
|
:param co: The coordinate of the new vert.
|
|
637
655
|
:type co: collections.abc.Sequence[float] | mathutils.Vector
|
|
638
|
-
:return: vert:
|
|
656
|
+
:return: vert:
|
|
657
|
+
The new vert.
|
|
639
658
|
|
|
640
659
|
type list of (`bmesh.types.BMVert`)
|
|
641
660
|
:rtype: dict[str, typing.Any]
|
|
@@ -697,6 +716,7 @@ def dissolve_edges(
|
|
|
697
716
|
:param use_face_split: Split off face corners to maintain surrounding geometry.
|
|
698
717
|
:type use_face_split: bool
|
|
699
718
|
:param angle_threshold: Do not dissolve verts between 2 edges when their angle exceeds this threshold.
|
|
719
|
+
Disabled by default.
|
|
700
720
|
:type angle_threshold: float
|
|
701
721
|
:return: region:
|
|
702
722
|
|
|
@@ -834,7 +854,8 @@ def edgeloop_fill(
|
|
|
834
854
|
:type mat_nr: int
|
|
835
855
|
:param use_smooth: Smooth state to use.
|
|
836
856
|
:type use_smooth: bool
|
|
837
|
-
:return: faces:
|
|
857
|
+
:return: faces:
|
|
858
|
+
New faces.
|
|
838
859
|
|
|
839
860
|
type list of (`bmesh.types.BMFace`)
|
|
840
861
|
:rtype: dict[str, typing.Any]
|
|
@@ -859,7 +880,8 @@ def edgenet_fill(
|
|
|
859
880
|
:type use_smooth: bool
|
|
860
881
|
:param sides: Number of sides.
|
|
861
882
|
:type sides: int
|
|
862
|
-
:return: faces:
|
|
883
|
+
:return: faces:
|
|
884
|
+
New faces.
|
|
863
885
|
|
|
864
886
|
type list of (`bmesh.types.BMFace`)
|
|
865
887
|
:rtype: dict[str, typing.Any]
|
|
@@ -875,7 +897,8 @@ def edgenet_prepare(
|
|
|
875
897
|
:type bm: bmesh.types.BMesh
|
|
876
898
|
:param edges: Input edges.
|
|
877
899
|
:type edges: list[bmesh.types.BMEdge]
|
|
878
|
-
:return: edges:
|
|
900
|
+
:return: edges:
|
|
901
|
+
New edges.
|
|
879
902
|
|
|
880
903
|
type list of (`bmesh.types.BMEdge`)
|
|
881
904
|
:rtype: dict[str, typing.Any]
|
|
@@ -897,7 +920,8 @@ def extrude_discrete_faces(
|
|
|
897
920
|
:type use_normal_flip: bool
|
|
898
921
|
:param use_select_history: Pass to duplicate.
|
|
899
922
|
:type use_select_history: bool
|
|
900
|
-
:return: faces:
|
|
923
|
+
:return: faces:
|
|
924
|
+
Output faces.
|
|
901
925
|
|
|
902
926
|
type list of (`bmesh.types.BMFace`)
|
|
903
927
|
:rtype: dict[str, typing.Any]
|
|
@@ -920,7 +944,8 @@ def extrude_edge_only(
|
|
|
920
944
|
:type use_normal_flip: bool
|
|
921
945
|
:param use_select_history: Pass to duplicate.
|
|
922
946
|
:type use_select_history: bool
|
|
923
|
-
:return: geom:
|
|
947
|
+
:return: geom:
|
|
948
|
+
Output geometry.
|
|
924
949
|
|
|
925
950
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
926
951
|
:rtype: dict[str, typing.Any]
|
|
@@ -974,11 +999,13 @@ def extrude_vert_indiv(
|
|
|
974
999
|
:type verts: list[bmesh.types.BMVert]
|
|
975
1000
|
:param use_select_history: Pass to duplicate.
|
|
976
1001
|
:type use_select_history: bool
|
|
977
|
-
:return: edges:
|
|
1002
|
+
:return: edges:
|
|
1003
|
+
Output wire edges.
|
|
978
1004
|
|
|
979
1005
|
type list of (`bmesh.types.BMEdge`)
|
|
980
1006
|
|
|
981
|
-
verts:
|
|
1007
|
+
verts:
|
|
1008
|
+
Output vertices.
|
|
982
1009
|
|
|
983
1010
|
type list of (`bmesh.types.BMVert`)
|
|
984
1011
|
:rtype: dict[str, typing.Any]
|
|
@@ -1000,7 +1027,8 @@ def face_attribute_fill(
|
|
|
1000
1027
|
:type use_normals: bool
|
|
1001
1028
|
:param use_data: Copy face data.
|
|
1002
1029
|
:type use_data: bool
|
|
1003
|
-
:return: faces_fail:
|
|
1030
|
+
:return: faces_fail:
|
|
1031
|
+
Faces that could not be handled.
|
|
1004
1032
|
|
|
1005
1033
|
type list of (`bmesh.types.BMFace`)
|
|
1006
1034
|
:rtype: dict[str, typing.Any]
|
|
@@ -1060,7 +1088,8 @@ def grid_fill(
|
|
|
1060
1088
|
:type use_smooth: bool
|
|
1061
1089
|
:param use_interp_simple: Use simple interpolation.
|
|
1062
1090
|
:type use_interp_simple: bool
|
|
1063
|
-
:return: faces:
|
|
1091
|
+
:return: faces:
|
|
1092
|
+
New faces.
|
|
1064
1093
|
|
|
1065
1094
|
type list of (`bmesh.types.BMFace`)
|
|
1066
1095
|
:rtype: dict[str, typing.Any]
|
|
@@ -1077,7 +1106,8 @@ def holes_fill(
|
|
|
1077
1106
|
:type edges: list[bmesh.types.BMEdge]
|
|
1078
1107
|
:param sides: Number of face sides to fill.
|
|
1079
1108
|
:type sides: int
|
|
1080
|
-
:return: faces:
|
|
1109
|
+
:return: faces:
|
|
1110
|
+
New faces.
|
|
1081
1111
|
|
|
1082
1112
|
type list of (`bmesh.types.BMFace`)
|
|
1083
1113
|
:rtype: dict[str, typing.Any]
|
|
@@ -1108,7 +1138,8 @@ def inset_individual(
|
|
|
1108
1138
|
:type use_interpolate: bool
|
|
1109
1139
|
:param use_relative_offset: Scale the offset by surrounding geometry.
|
|
1110
1140
|
:type use_relative_offset: bool
|
|
1111
|
-
:return: faces:
|
|
1141
|
+
:return: faces:
|
|
1142
|
+
Output faces.
|
|
1112
1143
|
|
|
1113
1144
|
type list of (`bmesh.types.BMFace`)
|
|
1114
1145
|
:rtype: dict[str, typing.Any]
|
|
@@ -1151,7 +1182,8 @@ def inset_region(
|
|
|
1151
1182
|
:type depth: float
|
|
1152
1183
|
:param use_outset: Outset rather than inset.
|
|
1153
1184
|
:type use_outset: bool
|
|
1154
|
-
:return: faces:
|
|
1185
|
+
:return: faces:
|
|
1186
|
+
Output faces.
|
|
1155
1187
|
|
|
1156
1188
|
type list of (`bmesh.types.BMFace`)
|
|
1157
1189
|
:rtype: dict[str, typing.Any]
|
|
@@ -1201,7 +1233,8 @@ def join_triangles(
|
|
|
1201
1233
|
:type merge_limit: int
|
|
1202
1234
|
:param neighbor_debug: Undocumented.
|
|
1203
1235
|
:type neighbor_debug: int
|
|
1204
|
-
:return: faces:
|
|
1236
|
+
:return: faces:
|
|
1237
|
+
Joined faces.
|
|
1205
1238
|
|
|
1206
1239
|
type list of (`bmesh.types.BMFace`)
|
|
1207
1240
|
:rtype: dict[str, typing.Any]
|
|
@@ -1262,7 +1295,8 @@ def mirror(
|
|
|
1262
1295
|
:type mirror_udim: bool
|
|
1263
1296
|
:param use_shapekey: Transform shape keys too.
|
|
1264
1297
|
:type use_shapekey: bool
|
|
1265
|
-
:return: geom:
|
|
1298
|
+
:return: geom:
|
|
1299
|
+
Output geometry, mirrored.
|
|
1266
1300
|
|
|
1267
1301
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
1268
1302
|
:rtype: dict[str, typing.Any]
|
|
@@ -1295,7 +1329,8 @@ def offset_edgeloops(
|
|
|
1295
1329
|
:type edges: list[bmesh.types.BMEdge]
|
|
1296
1330
|
:param use_cap_endpoint: Extend loop around end-points.
|
|
1297
1331
|
:type use_cap_endpoint: bool
|
|
1298
|
-
:return: edges:
|
|
1332
|
+
:return: edges:
|
|
1333
|
+
Output edges.
|
|
1299
1334
|
|
|
1300
1335
|
type list of (`bmesh.types.BMEdge`)
|
|
1301
1336
|
:rtype: dict[str, typing.Any]
|
|
@@ -1317,7 +1352,8 @@ def planar_faces(
|
|
|
1317
1352
|
:type iterations: int
|
|
1318
1353
|
:param factor: Influence for making planar each iteration
|
|
1319
1354
|
:type factor: float
|
|
1320
|
-
:return: geom:
|
|
1355
|
+
:return: geom:
|
|
1356
|
+
Output slot, computed boundary geometry.
|
|
1321
1357
|
|
|
1322
1358
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
1323
1359
|
:rtype: dict[str, typing.Any]
|
|
@@ -1372,11 +1408,13 @@ def poke(
|
|
|
1372
1408
|
:type center_mode: typing.Literal['MEAN_WEIGHTED','MEAN','BOUNDS']
|
|
1373
1409
|
:param use_relative_offset: Apply offset.
|
|
1374
1410
|
:type use_relative_offset: bool
|
|
1375
|
-
:return: verts:
|
|
1411
|
+
:return: verts:
|
|
1412
|
+
Output verts.
|
|
1376
1413
|
|
|
1377
1414
|
type list of (`bmesh.types.BMVert`)
|
|
1378
1415
|
|
|
1379
|
-
faces:
|
|
1416
|
+
faces:
|
|
1417
|
+
Output faces.
|
|
1380
1418
|
|
|
1381
1419
|
type list of (`bmesh.types.BMFace`)
|
|
1382
1420
|
:rtype: dict[str, typing.Any]
|
|
@@ -1417,7 +1455,8 @@ def region_extend(
|
|
|
1417
1455
|
:type use_faces: bool
|
|
1418
1456
|
:param use_face_step: Step over connected faces.
|
|
1419
1457
|
:type use_face_step: bool
|
|
1420
|
-
:return: geom:
|
|
1458
|
+
:return: geom:
|
|
1459
|
+
Output slot, computed boundary geometry.
|
|
1421
1460
|
|
|
1422
1461
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
1423
1462
|
:rtype: dict[str, typing.Any]
|
|
@@ -1531,7 +1570,8 @@ def rotate_edges(
|
|
|
1531
1570
|
:type edges: list[bmesh.types.BMEdge]
|
|
1532
1571
|
:param use_ccw: Rotate edge counter-clockwise if true, otherwise clockwise.
|
|
1533
1572
|
:type use_ccw: bool
|
|
1534
|
-
:return: edges:
|
|
1573
|
+
:return: edges:
|
|
1574
|
+
Newly spun edges.
|
|
1535
1575
|
|
|
1536
1576
|
type list of (`bmesh.types.BMEdge`)
|
|
1537
1577
|
:rtype: dict[str, typing.Any]
|
|
@@ -1701,7 +1741,8 @@ def spin(
|
|
|
1701
1741
|
:type use_normal_flip: bool
|
|
1702
1742
|
:param use_duplicate: Duplicate or extrude?.
|
|
1703
1743
|
:type use_duplicate: bool
|
|
1704
|
-
:return: geom_last:
|
|
1744
|
+
:return: geom_last:
|
|
1745
|
+
Result of last step.
|
|
1705
1746
|
|
|
1706
1747
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
1707
1748
|
:rtype: dict[str, typing.Any]
|
|
@@ -1756,7 +1797,8 @@ def split_edges(
|
|
|
1756
1797
|
:type verts: list[bmesh.types.BMVert]
|
|
1757
1798
|
:param use_verts: Use 'verts' for splitting, else just find verts to split from edges.
|
|
1758
1799
|
:type use_verts: bool
|
|
1759
|
-
:return: edges:
|
|
1800
|
+
:return: edges:
|
|
1801
|
+
Old output disconnected edges.
|
|
1760
1802
|
|
|
1761
1803
|
type list of (`bmesh.types.BMEdge`)
|
|
1762
1804
|
:rtype: dict[str, typing.Any]
|
|
@@ -1789,7 +1831,8 @@ def subdivide_edgering(
|
|
|
1789
1831
|
:type profile_shape: typing.Literal['SMOOTH','SPHERE','ROOT','SHARP','LINEAR','INVERSE_SQUARE']
|
|
1790
1832
|
:param profile_shape_factor: How much intermediary new edges are shrunk/expanded.
|
|
1791
1833
|
:type profile_shape_factor: float
|
|
1792
|
-
:return: faces:
|
|
1834
|
+
:return: faces:
|
|
1835
|
+
Output faces.
|
|
1793
1836
|
|
|
1794
1837
|
type list of (`bmesh.types.BMFace`)
|
|
1795
1838
|
:rtype: dict[str, typing.Any]
|
|
@@ -1858,7 +1901,8 @@ def subdivide_edges(
|
|
|
1858
1901
|
|
|
1859
1902
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
1860
1903
|
|
|
1861
|
-
geom:
|
|
1904
|
+
geom:
|
|
1905
|
+
Contains all output geometry.
|
|
1862
1906
|
|
|
1863
1907
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
1864
1908
|
:rtype: dict[str, typing.Any]
|
|
@@ -1959,7 +2003,8 @@ def triangle_fill(
|
|
|
1959
2003
|
:type edges: list[bmesh.types.BMEdge]
|
|
1960
2004
|
:param normal: Optionally pass the fill normal to use.
|
|
1961
2005
|
:type normal: collections.abc.Sequence[float] | mathutils.Vector
|
|
1962
|
-
:return: geom:
|
|
2006
|
+
:return: geom:
|
|
2007
|
+
New faces and edges.
|
|
1963
2008
|
|
|
1964
2009
|
type list of (`bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`)
|
|
1965
2010
|
:rtype: dict[str, typing.Any]
|
|
@@ -1995,7 +2040,8 @@ def triangulate(
|
|
|
1995
2040
|
|
|
1996
2041
|
type dict mapping vert/edge/face types to `bmesh.types.BMVert`/`bmesh.types.BMEdge`/`bmesh.types.BMFace`
|
|
1997
2042
|
|
|
1998
|
-
face_map_double:
|
|
2043
|
+
face_map_double:
|
|
2044
|
+
Duplicate faces.
|
|
1999
2045
|
|
|
2000
2046
|
type dict mapping vert/edge/face types to `bmesh.types.BMVert`/`bmesh.types.BMEdge`/`bmesh.types.BMFace`
|
|
2001
2047
|
:rtype: dict[str, typing.Any]
|
|
@@ -2061,7 +2107,8 @@ def wireframe(
|
|
|
2061
2107
|
:type use_relative_offset: bool
|
|
2062
2108
|
:param material_offset: Offset material index of generated faces.
|
|
2063
2109
|
:type material_offset: int
|
|
2064
|
-
:return: faces:
|
|
2110
|
+
:return: faces:
|
|
2111
|
+
Output faces.
|
|
2065
2112
|
|
|
2066
2113
|
type list of (`bmesh.types.BMFace`)
|
|
2067
2114
|
:rtype: dict[str, typing.Any]
|
|
@@ -126,7 +126,7 @@ def fbx(
|
|
|
126
126
|
:type use_mesh_modifiers: bool | None
|
|
127
127
|
:param use_mesh_modifiers_render: Use Modifiers Render Setting, Use render settings when applying modifiers to mesh objects (DISABLED in Blender 2.8)
|
|
128
128
|
:type use_mesh_modifiers_render: bool | None
|
|
129
|
-
:param mesh_smooth_type: Smoothing, Export smoothing information (prefer 'Normals Only' option if your target importer
|
|
129
|
+
:param mesh_smooth_type: Smoothing, Export smoothing information (prefer 'Normals Only' option if your target importer understands custom normals)
|
|
130
130
|
|
|
131
131
|
OFF
|
|
132
132
|
Normals Only -- Export only normals instead of writing edge or face smoothing data.
|
bpy/ops/graph/__init__.pyi
CHANGED
|
@@ -816,7 +816,7 @@ def select_box(
|
|
|
816
816
|
:type undo: bool | None
|
|
817
817
|
:param axis_range: Axis Range
|
|
818
818
|
:type axis_range: bool | None
|
|
819
|
-
:param include_handles: Include Handles, Are handles tested individually against the selection criteria
|
|
819
|
+
:param include_handles: Include Handles, Are handles tested individually against the selection criteria, independently from their keys. When unchecked, handles are (de)selected in unison with their keys
|
|
820
820
|
:type include_handles: bool | None
|
|
821
821
|
:param tweak: Tweak, Operator has been activated using a click-drag event
|
|
822
822
|
:type tweak: bool | None
|
|
@@ -855,6 +855,7 @@ def select_circle(
|
|
|
855
855
|
radius: int | None = 25,
|
|
856
856
|
wait_for_input: bool | None = True,
|
|
857
857
|
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
858
|
+
include_handles: bool | None = True,
|
|
858
859
|
use_curve_selection: bool | None = True,
|
|
859
860
|
) -> None:
|
|
860
861
|
"""Select keyframe points using circle selection
|
|
@@ -880,6 +881,8 @@ def select_circle(
|
|
|
880
881
|
SUB
|
|
881
882
|
Subtract -- Subtract existing selection.
|
|
882
883
|
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
884
|
+
:param include_handles: Include Handles, Are handles tested individually against the selection criteria, independently from their keys. When unchecked, handles are (de)selected in unison with their keys
|
|
885
|
+
:type include_handles: bool | None
|
|
883
886
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
|
|
884
887
|
:type use_curve_selection: bool | None
|
|
885
888
|
"""
|
|
@@ -958,6 +961,7 @@ def select_lasso(
|
|
|
958
961
|
smooth_stroke_factor: float | None = 0.75,
|
|
959
962
|
smooth_stroke_radius: int | None = 35,
|
|
960
963
|
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
964
|
+
include_handles: bool | None = True,
|
|
961
965
|
use_curve_selection: bool | None = True,
|
|
962
966
|
) -> None:
|
|
963
967
|
"""Select keyframe points using lasso selection
|
|
@@ -983,6 +987,8 @@ def select_lasso(
|
|
|
983
987
|
SUB
|
|
984
988
|
Subtract -- Subtract existing selection.
|
|
985
989
|
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
990
|
+
:param include_handles: Include Handles, Are handles tested individually against the selection criteria, independently from their keys. When unchecked, handles are (de)selected in unison with their keys
|
|
991
|
+
:type include_handles: bool | None
|
|
986
992
|
:param use_curve_selection: Select Curves, Allow selecting all the keyframes of a curve by selecting the curve itself
|
|
987
993
|
:type use_curve_selection: bool | None
|
|
988
994
|
"""
|
|
@@ -135,6 +135,7 @@ def gltf(
|
|
|
135
135
|
import_select_created_objects: bool | None = True,
|
|
136
136
|
import_scene_extras: bool | None = True,
|
|
137
137
|
import_scene_as_collection: bool | None = True,
|
|
138
|
+
import_merge_material_slots: bool | None = True,
|
|
138
139
|
) -> None:
|
|
139
140
|
"""Load a glTF 2.0 file
|
|
140
141
|
|
|
@@ -192,4 +193,6 @@ def gltf(
|
|
|
192
193
|
:type import_scene_extras: bool | None
|
|
193
194
|
:param import_scene_as_collection: Import Scene as Collection, Import the scene as a collection
|
|
194
195
|
:type import_scene_as_collection: bool | None
|
|
196
|
+
:param import_merge_material_slots: Merge Material Slot when possible, Merge material slots when possible
|
|
197
|
+
:type import_merge_material_slots: bool | None
|
|
195
198
|
"""
|
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -411,7 +411,7 @@ def convex_hull(
|
|
|
411
411
|
def customdata_custom_splitnormals_add(
|
|
412
412
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
413
413
|
) -> None:
|
|
414
|
-
"""Add a custom
|
|
414
|
+
"""Add a custom normals layer, if none exists yet
|
|
415
415
|
|
|
416
416
|
:type execution_context: int | str | None
|
|
417
417
|
:type undo: bool | None
|
|
@@ -420,7 +420,7 @@ def customdata_custom_splitnormals_add(
|
|
|
420
420
|
def customdata_custom_splitnormals_clear(
|
|
421
421
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
422
422
|
) -> None:
|
|
423
|
-
"""Remove the custom
|
|
423
|
+
"""Remove the custom normals layer, if it exists
|
|
424
424
|
|
|
425
425
|
:type execution_context: int | str | None
|
|
426
426
|
:type undo: bool | None
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -2039,6 +2039,15 @@ def simulation_zone_item_remove(
|
|
|
2039
2039
|
:type undo: bool | None
|
|
2040
2040
|
"""
|
|
2041
2041
|
|
|
2042
|
+
def sockets_sync(
|
|
2043
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
2044
|
+
) -> None:
|
|
2045
|
+
"""Update sockets to match what is actually used
|
|
2046
|
+
|
|
2047
|
+
:type execution_context: int | str | None
|
|
2048
|
+
:type undo: bool | None
|
|
2049
|
+
"""
|
|
2050
|
+
|
|
2042
2051
|
def translate_attach(
|
|
2043
2052
|
execution_context: int | str | None = None,
|
|
2044
2053
|
undo: bool | None = None,
|
bpy/ops/transform/__init__.pyi
CHANGED
|
@@ -580,7 +580,7 @@ def rotate_normal(
|
|
|
580
580
|
release_confirm: bool | None = False,
|
|
581
581
|
use_accurate: bool | None = False,
|
|
582
582
|
) -> None:
|
|
583
|
-
"""Rotate
|
|
583
|
+
"""Rotate custom normal of selected items
|
|
584
584
|
|
|
585
585
|
:type execution_context: int | str | None
|
|
586
586
|
:type undo: bool | None
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -2370,6 +2370,8 @@ def obj_import(
|
|
|
2370
2370
|
validate_meshes: bool | None = True,
|
|
2371
2371
|
close_spline_loops: bool | None = True,
|
|
2372
2372
|
collection_separator: str = "",
|
|
2373
|
+
mtl_name_collision_mode: typing.Literal["MAKE_UNIQUE", "REFERENCE_EXISTING"]
|
|
2374
|
+
| None = "MAKE_UNIQUE",
|
|
2373
2375
|
filter_glob: str = "*.obj;*.mtl",
|
|
2374
2376
|
) -> None:
|
|
2375
2377
|
"""Load a Wavefront OBJ scene
|
|
@@ -2490,6 +2492,14 @@ def obj_import(
|
|
|
2490
2492
|
:type close_spline_loops: bool | None
|
|
2491
2493
|
:param collection_separator: Path Separator, Character used to separate objects name into hierarchical structure
|
|
2492
2494
|
:type collection_separator: str
|
|
2495
|
+
:param mtl_name_collision_mode: Material Name Collision, How to handle naming collisions when importing materials
|
|
2496
|
+
|
|
2497
|
+
MAKE_UNIQUE
|
|
2498
|
+
Make Unique -- Create new materials with unique names for each OBJ file.
|
|
2499
|
+
|
|
2500
|
+
REFERENCE_EXISTING
|
|
2501
|
+
Reference Existing -- Use existing materials with same name instead of creating new ones.
|
|
2502
|
+
:type mtl_name_collision_mode: typing.Literal['MAKE_UNIQUE','REFERENCE_EXISTING'] | None
|
|
2493
2503
|
:param filter_glob: Extension Filter
|
|
2494
2504
|
:type filter_glob: str
|
|
2495
2505
|
"""
|