fake-bpy-module 20240725__py3-none-any.whl → 20240727__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/wm/__init__.pyi +1 -0
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/temp_anim_layers/__init__.pyi +0 -2
- bpy/ops/grease_pencil/__init__.pyi +81 -0
- bpy/ops/object/__init__.pyi +39 -3
- bpy/types/__init__.pyi +1301 -2135
- {fake_bpy_module-20240725.dist-info → fake_bpy_module-20240727.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240725.dist-info → fake_bpy_module-20240727.dist-info}/RECORD +10 -10
- {fake_bpy_module-20240725.dist-info → fake_bpy_module-20240727.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240725.dist-info → fake_bpy_module-20240727.dist-info}/top_level.txt +0 -0
bl_operators/wm/__init__.pyi
CHANGED
|
@@ -136,9 +136,9 @@ def draw_ui_list(
|
|
|
136
136
|
context: bpy.types.Context,
|
|
137
137
|
class_name: str = "UI_UL_list",
|
|
138
138
|
*,
|
|
139
|
-
unique_id: str
|
|
140
|
-
list_path: str
|
|
141
|
-
active_index_path: str
|
|
139
|
+
unique_id: str,
|
|
140
|
+
list_path: str,
|
|
141
|
+
active_index_path: str,
|
|
142
142
|
insertion_operators: bool = True,
|
|
143
143
|
move_operators: str = True,
|
|
144
144
|
menu_class_name: str = "",
|
|
@@ -295,6 +295,24 @@ def frame_clean_duplicate(
|
|
|
295
295
|
|
|
296
296
|
...
|
|
297
297
|
|
|
298
|
+
def frame_duplicate(
|
|
299
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
300
|
+
execution_context: int | str | None = None,
|
|
301
|
+
undo: bool | None = None,
|
|
302
|
+
*,
|
|
303
|
+
all: bool | None = False,
|
|
304
|
+
):
|
|
305
|
+
"""Make a copy of the active Grease Pencil frame(s)
|
|
306
|
+
|
|
307
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
308
|
+
:type execution_context: int | str | None
|
|
309
|
+
:type undo: bool | None
|
|
310
|
+
:param all: Duplicate all, Duplicate active keyframes of all layer
|
|
311
|
+
:type all: bool | None
|
|
312
|
+
"""
|
|
313
|
+
|
|
314
|
+
...
|
|
315
|
+
|
|
298
316
|
def insert_blank_frame(
|
|
299
317
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
300
318
|
execution_context: int | str | None = None,
|
|
@@ -1505,6 +1523,69 @@ def stroke_switch_direction(
|
|
|
1505
1523
|
|
|
1506
1524
|
...
|
|
1507
1525
|
|
|
1526
|
+
def trace_image(
|
|
1527
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1528
|
+
execution_context: int | str | None = None,
|
|
1529
|
+
undo: bool | None = None,
|
|
1530
|
+
*,
|
|
1531
|
+
target: str | None = "NEW",
|
|
1532
|
+
radius: float | None = 0.01,
|
|
1533
|
+
threshold: float | None = 0.5,
|
|
1534
|
+
turnpolicy: str | None = "MINORITY",
|
|
1535
|
+
mode: str | None = "SINGLE",
|
|
1536
|
+
use_current_frame: bool | None = True,
|
|
1537
|
+
frame_number: int | None = 0,
|
|
1538
|
+
):
|
|
1539
|
+
"""Extract Grease Pencil strokes from image
|
|
1540
|
+
|
|
1541
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1542
|
+
:type execution_context: int | str | None
|
|
1543
|
+
:type undo: bool | None
|
|
1544
|
+
:param target: Target Object, Target grease pencil
|
|
1545
|
+
:type target: str | None
|
|
1546
|
+
:param radius: Radius
|
|
1547
|
+
:type radius: float | None
|
|
1548
|
+
:param threshold: Color Threshold, Determine the lightness threshold above which strokes are generated
|
|
1549
|
+
:type threshold: float | None
|
|
1550
|
+
:param turnpolicy: Turn Policy, Determines how to resolve ambiguities during decomposition of bitmaps into paths
|
|
1551
|
+
|
|
1552
|
+
FOREGROUND
|
|
1553
|
+
Foreground -- Prefers to connect foreground components.
|
|
1554
|
+
|
|
1555
|
+
BACKGROUND
|
|
1556
|
+
Background -- Prefers to connect background components.
|
|
1557
|
+
|
|
1558
|
+
LEFT
|
|
1559
|
+
Left -- Always take a left turn.
|
|
1560
|
+
|
|
1561
|
+
RIGHT
|
|
1562
|
+
Right -- Always take a right turn.
|
|
1563
|
+
|
|
1564
|
+
MINORITY
|
|
1565
|
+
Minority -- Prefers to connect the color that occurs least frequently in the local neighborhood of the current position.
|
|
1566
|
+
|
|
1567
|
+
MAJORITY
|
|
1568
|
+
Majority -- Prefers to connect the color that occurs most frequently in the local neighborhood of the current position.
|
|
1569
|
+
|
|
1570
|
+
RANDOM
|
|
1571
|
+
Random -- Choose pseudo-randomly.
|
|
1572
|
+
:type turnpolicy: str | None
|
|
1573
|
+
:param mode: Mode, Determines if trace simple image or full sequence
|
|
1574
|
+
|
|
1575
|
+
SINGLE
|
|
1576
|
+
Single -- Trace the current frame of the image.
|
|
1577
|
+
|
|
1578
|
+
SEQUENCE
|
|
1579
|
+
Sequence -- Trace full sequence.
|
|
1580
|
+
:type mode: str | None
|
|
1581
|
+
:param use_current_frame: Start At Current Frame, Trace Image starting in current image frame
|
|
1582
|
+
:type use_current_frame: bool | None
|
|
1583
|
+
:param frame_number: Trace Frame, Used to trace only one frame of the image sequence, set to zero to trace all
|
|
1584
|
+
:type frame_number: int | None
|
|
1585
|
+
"""
|
|
1586
|
+
|
|
1587
|
+
...
|
|
1588
|
+
|
|
1508
1589
|
def weight_brush_stroke(
|
|
1509
1590
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1510
1591
|
execution_context: int | str | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -2620,6 +2620,42 @@ def lineart_bake_strokes(
|
|
|
2620
2620
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2621
2621
|
execution_context: int | str | None = None,
|
|
2622
2622
|
undo: bool | None = None,
|
|
2623
|
+
*,
|
|
2624
|
+
bake_all: bool | None = False,
|
|
2625
|
+
):
|
|
2626
|
+
"""Bake Line Art for current Grease Pencil object
|
|
2627
|
+
|
|
2628
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2629
|
+
:type execution_context: int | str | None
|
|
2630
|
+
:type undo: bool | None
|
|
2631
|
+
:param bake_all: Bake All, Bake all line art modifiers
|
|
2632
|
+
:type bake_all: bool | None
|
|
2633
|
+
"""
|
|
2634
|
+
|
|
2635
|
+
...
|
|
2636
|
+
|
|
2637
|
+
def lineart_clear(
|
|
2638
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2639
|
+
execution_context: int | str | None = None,
|
|
2640
|
+
undo: bool | None = None,
|
|
2641
|
+
*,
|
|
2642
|
+
clear_all: bool | None = False,
|
|
2643
|
+
):
|
|
2644
|
+
"""Clear all strokes in current Grease Pencil object
|
|
2645
|
+
|
|
2646
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
2647
|
+
:type execution_context: int | str | None
|
|
2648
|
+
:type undo: bool | None
|
|
2649
|
+
:param clear_all: Clear All, Clear all line art modifier bakes
|
|
2650
|
+
:type clear_all: bool | None
|
|
2651
|
+
"""
|
|
2652
|
+
|
|
2653
|
+
...
|
|
2654
|
+
|
|
2655
|
+
def lineart_legacy_bake_strokes(
|
|
2656
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2657
|
+
execution_context: int | str | None = None,
|
|
2658
|
+
undo: bool | None = None,
|
|
2623
2659
|
):
|
|
2624
2660
|
"""Bake Line Art for current Grease Pencil object
|
|
2625
2661
|
|
|
@@ -2630,7 +2666,7 @@ def lineart_bake_strokes(
|
|
|
2630
2666
|
|
|
2631
2667
|
...
|
|
2632
2668
|
|
|
2633
|
-
def
|
|
2669
|
+
def lineart_legacy_bake_strokes_all(
|
|
2634
2670
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2635
2671
|
execution_context: int | str | None = None,
|
|
2636
2672
|
undo: bool | None = None,
|
|
@@ -2644,7 +2680,7 @@ def lineart_bake_strokes_all(
|
|
|
2644
2680
|
|
|
2645
2681
|
...
|
|
2646
2682
|
|
|
2647
|
-
def
|
|
2683
|
+
def lineart_legacy_clear(
|
|
2648
2684
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2649
2685
|
execution_context: int | str | None = None,
|
|
2650
2686
|
undo: bool | None = None,
|
|
@@ -2658,7 +2694,7 @@ def lineart_clear(
|
|
|
2658
2694
|
|
|
2659
2695
|
...
|
|
2660
2696
|
|
|
2661
|
-
def
|
|
2697
|
+
def lineart_legacy_clear_all(
|
|
2662
2698
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
2663
2699
|
execution_context: int | str | None = None,
|
|
2664
2700
|
undo: bool | None = None,
|