fake-bpy-module 20240726__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.
- bpy/ops/grease_pencil/__init__.pyi +18 -0
- bpy/ops/object/__init__.pyi +39 -3
- bpy/types/__init__.pyi +1684 -2526
- {fake_bpy_module-20240726.dist-info → fake_bpy_module-20240727.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240726.dist-info → fake_bpy_module-20240727.dist-info}/RECORD +7 -7
- {fake_bpy_module-20240726.dist-info → fake_bpy_module-20240727.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240726.dist-info → fake_bpy_module-20240727.dist-info}/top_level.txt +0 -0
|
@@ -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,
|
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,
|