fake-bpy-module 20250827__py3-none-any.whl → 20250828__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.
- bpy/ops/curves/__init__.pyi +21 -5
- bpy/ops/grease_pencil/__init__.pyi +30 -11
- bpy/types/__init__.pyi +33549 -33549
- {fake_bpy_module-20250827.dist-info → fake_bpy_module-20250828.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250827.dist-info → fake_bpy_module-20250828.dist-info}/RECORD +7 -7
- {fake_bpy_module-20250827.dist-info → fake_bpy_module-20250828.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250827.dist-info → fake_bpy_module-20250828.dist-info}/top_level.txt +0 -0
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -296,14 +296,30 @@ def handle_type_set(
|
|
|
296
296
|
undo: bool | None = None,
|
|
297
297
|
/,
|
|
298
298
|
*,
|
|
299
|
-
type:
|
|
299
|
+
type: typing.Literal["AUTO", "VECTOR", "ALIGN", "FREE_ALIGN", "TOGGLE_FREE_ALIGN"]
|
|
300
|
+
| None = "AUTO",
|
|
300
301
|
) -> None:
|
|
301
302
|
"""Set the handle type for bezier curves
|
|
302
303
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
304
|
+
:type execution_context: int | str | None
|
|
305
|
+
:type undo: bool | None
|
|
306
|
+
:param type: Type
|
|
307
|
+
|
|
308
|
+
AUTO
|
|
309
|
+
Auto -- The location is automatically calculated to be smooth.
|
|
310
|
+
|
|
311
|
+
VECTOR
|
|
312
|
+
Vector -- The location is calculated to point to the next/previous control point.
|
|
313
|
+
|
|
314
|
+
ALIGN
|
|
315
|
+
Align -- The location is constrained to point in the opposite direction as the other handle.
|
|
316
|
+
|
|
317
|
+
FREE_ALIGN
|
|
318
|
+
Free -- The handle can be moved anywhere, and does not influence the points other handle.
|
|
319
|
+
|
|
320
|
+
TOGGLE_FREE_ALIGN
|
|
321
|
+
Toggle Free/Align -- Replace Free handles with Align, and all Align with Free handles.
|
|
322
|
+
:type type: typing.Literal['AUTO','VECTOR','ALIGN','FREE_ALIGN','TOGGLE_FREE_ALIGN'] | None
|
|
307
323
|
"""
|
|
308
324
|
|
|
309
325
|
def sculptmode_toggle(
|
|
@@ -572,7 +572,7 @@ def join_selection(
|
|
|
572
572
|
undo: bool | None = None,
|
|
573
573
|
/,
|
|
574
574
|
*,
|
|
575
|
-
type: typing.Literal["
|
|
575
|
+
type: typing.Literal["JOINSTROKES", "SPLITCOPY", "SPLIT"] | None = "JOINSTROKES",
|
|
576
576
|
) -> None:
|
|
577
577
|
"""New stroke from selected points/strokes
|
|
578
578
|
|
|
@@ -580,12 +580,15 @@ def join_selection(
|
|
|
580
580
|
:type undo: bool | None
|
|
581
581
|
:param type: Type, Defines how the operator will behave on the selection in the active layer
|
|
582
582
|
|
|
583
|
-
|
|
584
|
-
Join
|
|
583
|
+
JOINSTROKES
|
|
584
|
+
Join Strokes -- Join the selected strokes into one stroke.
|
|
585
585
|
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
586
|
+
SPLITCOPY
|
|
587
|
+
Split and Copy -- Copy the selected points to a new stroke.
|
|
588
|
+
|
|
589
|
+
SPLIT
|
|
590
|
+
Split -- Split the selected point to a new stroke.
|
|
591
|
+
:type type: typing.Literal['JOINSTROKES','SPLITCOPY','SPLIT'] | None
|
|
589
592
|
"""
|
|
590
593
|
|
|
591
594
|
def layer_active(
|
|
@@ -1573,14 +1576,30 @@ def set_handle_type(
|
|
|
1573
1576
|
undo: bool | None = None,
|
|
1574
1577
|
/,
|
|
1575
1578
|
*,
|
|
1576
|
-
type:
|
|
1579
|
+
type: typing.Literal["AUTO", "VECTOR", "ALIGN", "FREE_ALIGN", "TOGGLE_FREE_ALIGN"]
|
|
1580
|
+
| None = "AUTO",
|
|
1577
1581
|
) -> None:
|
|
1578
1582
|
"""Set the handle type for bezier curves
|
|
1579
1583
|
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
+
:type execution_context: int | str | None
|
|
1585
|
+
:type undo: bool | None
|
|
1586
|
+
:param type: Type
|
|
1587
|
+
|
|
1588
|
+
AUTO
|
|
1589
|
+
Auto -- The location is automatically calculated to be smooth.
|
|
1590
|
+
|
|
1591
|
+
VECTOR
|
|
1592
|
+
Vector -- The location is calculated to point to the next/previous control point.
|
|
1593
|
+
|
|
1594
|
+
ALIGN
|
|
1595
|
+
Align -- The location is constrained to point in the opposite direction as the other handle.
|
|
1596
|
+
|
|
1597
|
+
FREE_ALIGN
|
|
1598
|
+
Free -- The handle can be moved anywhere, and does not influence the points other handle.
|
|
1599
|
+
|
|
1600
|
+
TOGGLE_FREE_ALIGN
|
|
1601
|
+
Toggle Free/Align -- Replace Free handles with Align, and all Align with Free handles.
|
|
1602
|
+
:type type: typing.Literal['AUTO','VECTOR','ALIGN','FREE_ALIGN','TOGGLE_FREE_ALIGN'] | None
|
|
1584
1603
|
"""
|
|
1585
1604
|
|
|
1586
1605
|
def set_material(
|