fake-bpy-module 20241002__py3-none-any.whl → 20241004__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_internal/extensions/stale_file_manager/__init__.pyi +6 -0
- addon_utils/__init__.pyi +1 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +79 -0
- bl_ui/properties_object/__init__.pyi +149 -0
- bl_ui/properties_paint_common/__init__.pyi +45 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +0 -1
- bl_ui/space_view3d/__init__.pyi +34 -0
- bpy/app/handlers/__init__.pyi +8 -0
- bpy/ops/grease_pencil/__init__.pyi +89 -0
- bpy/ops/node/__init__.pyi +24 -24
- bpy/ops/sequencer/__init__.pyi +0 -3
- bpy/ops/ui/__init__.pyi +12 -0
- bpy/ops/wm/__init__.pyi +13 -0
- bpy/types/__init__.pyi +680 -5
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/RECORD +19 -19
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241002.dist-info → fake_bpy_module-20241004.dist-info}/top_level.txt +0 -0
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -447,7 +447,7 @@ def bake_node_item_add(
|
|
|
447
447
|
execution_context: int | str | None = None,
|
|
448
448
|
undo: bool | None = None,
|
|
449
449
|
):
|
|
450
|
-
"""Add
|
|
450
|
+
"""Add item below active item
|
|
451
451
|
|
|
452
452
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
453
453
|
:type execution_context: int | str | None
|
|
@@ -461,7 +461,7 @@ def bake_node_item_move(
|
|
|
461
461
|
*,
|
|
462
462
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
463
463
|
):
|
|
464
|
-
"""Move active
|
|
464
|
+
"""Move active item
|
|
465
465
|
|
|
466
466
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
467
467
|
:type execution_context: int | str | None
|
|
@@ -475,7 +475,7 @@ def bake_node_item_remove(
|
|
|
475
475
|
execution_context: int | str | None = None,
|
|
476
476
|
undo: bool | None = None,
|
|
477
477
|
):
|
|
478
|
-
"""Remove active
|
|
478
|
+
"""Remove active item
|
|
479
479
|
|
|
480
480
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
481
481
|
:type execution_context: int | str | None
|
|
@@ -487,7 +487,7 @@ def capture_attribute_item_add(
|
|
|
487
487
|
execution_context: int | str | None = None,
|
|
488
488
|
undo: bool | None = None,
|
|
489
489
|
):
|
|
490
|
-
"""Add
|
|
490
|
+
"""Add item below active item
|
|
491
491
|
|
|
492
492
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
493
493
|
:type execution_context: int | str | None
|
|
@@ -501,7 +501,7 @@ def capture_attribute_item_move(
|
|
|
501
501
|
*,
|
|
502
502
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
503
503
|
):
|
|
504
|
-
"""Move active
|
|
504
|
+
"""Move active item
|
|
505
505
|
|
|
506
506
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
507
507
|
:type execution_context: int | str | None
|
|
@@ -515,7 +515,7 @@ def capture_attribute_item_remove(
|
|
|
515
515
|
execution_context: int | str | None = None,
|
|
516
516
|
undo: bool | None = None,
|
|
517
517
|
):
|
|
518
|
-
"""Remove active
|
|
518
|
+
"""Remove active item
|
|
519
519
|
|
|
520
520
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
521
521
|
:type execution_context: int | str | None
|
|
@@ -777,7 +777,7 @@ def enum_definition_item_add(
|
|
|
777
777
|
execution_context: int | str | None = None,
|
|
778
778
|
undo: bool | None = None,
|
|
779
779
|
):
|
|
780
|
-
"""Add
|
|
780
|
+
"""Add item below active item
|
|
781
781
|
|
|
782
782
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
783
783
|
:type execution_context: int | str | None
|
|
@@ -791,7 +791,7 @@ def enum_definition_item_move(
|
|
|
791
791
|
*,
|
|
792
792
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
793
793
|
):
|
|
794
|
-
"""Move active
|
|
794
|
+
"""Move active item
|
|
795
795
|
|
|
796
796
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
797
797
|
:type execution_context: int | str | None
|
|
@@ -805,7 +805,7 @@ def enum_definition_item_remove(
|
|
|
805
805
|
execution_context: int | str | None = None,
|
|
806
806
|
undo: bool | None = None,
|
|
807
807
|
):
|
|
808
|
-
"""Remove active
|
|
808
|
+
"""Remove active item
|
|
809
809
|
|
|
810
810
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
811
811
|
:type execution_context: int | str | None
|
|
@@ -829,7 +829,7 @@ def foreach_geometry_element_zone_generation_item_add(
|
|
|
829
829
|
execution_context: int | str | None = None,
|
|
830
830
|
undo: bool | None = None,
|
|
831
831
|
):
|
|
832
|
-
"""Add
|
|
832
|
+
"""Add item below active item
|
|
833
833
|
|
|
834
834
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
835
835
|
:type execution_context: int | str | None
|
|
@@ -843,7 +843,7 @@ def foreach_geometry_element_zone_generation_item_move(
|
|
|
843
843
|
*,
|
|
844
844
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
845
845
|
):
|
|
846
|
-
"""Move active
|
|
846
|
+
"""Move active item
|
|
847
847
|
|
|
848
848
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
849
849
|
:type execution_context: int | str | None
|
|
@@ -857,7 +857,7 @@ def foreach_geometry_element_zone_generation_item_remove(
|
|
|
857
857
|
execution_context: int | str | None = None,
|
|
858
858
|
undo: bool | None = None,
|
|
859
859
|
):
|
|
860
|
-
"""Remove active
|
|
860
|
+
"""Remove active item
|
|
861
861
|
|
|
862
862
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
863
863
|
:type execution_context: int | str | None
|
|
@@ -869,7 +869,7 @@ def foreach_geometry_element_zone_input_item_add(
|
|
|
869
869
|
execution_context: int | str | None = None,
|
|
870
870
|
undo: bool | None = None,
|
|
871
871
|
):
|
|
872
|
-
"""Add
|
|
872
|
+
"""Add item below active item
|
|
873
873
|
|
|
874
874
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
875
875
|
:type execution_context: int | str | None
|
|
@@ -883,7 +883,7 @@ def foreach_geometry_element_zone_input_item_move(
|
|
|
883
883
|
*,
|
|
884
884
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
885
885
|
):
|
|
886
|
-
"""Move active
|
|
886
|
+
"""Move active item
|
|
887
887
|
|
|
888
888
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
889
889
|
:type execution_context: int | str | None
|
|
@@ -897,7 +897,7 @@ def foreach_geometry_element_zone_input_item_remove(
|
|
|
897
897
|
execution_context: int | str | None = None,
|
|
898
898
|
undo: bool | None = None,
|
|
899
899
|
):
|
|
900
|
-
"""Remove active
|
|
900
|
+
"""Remove active item
|
|
901
901
|
|
|
902
902
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
903
903
|
:type execution_context: int | str | None
|
|
@@ -909,7 +909,7 @@ def foreach_geometry_element_zone_main_item_add(
|
|
|
909
909
|
execution_context: int | str | None = None,
|
|
910
910
|
undo: bool | None = None,
|
|
911
911
|
):
|
|
912
|
-
"""Add
|
|
912
|
+
"""Add item below active item
|
|
913
913
|
|
|
914
914
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
915
915
|
:type execution_context: int | str | None
|
|
@@ -923,7 +923,7 @@ def foreach_geometry_element_zone_main_item_move(
|
|
|
923
923
|
*,
|
|
924
924
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
925
925
|
):
|
|
926
|
-
"""Move active
|
|
926
|
+
"""Move active item
|
|
927
927
|
|
|
928
928
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
929
929
|
:type execution_context: int | str | None
|
|
@@ -937,7 +937,7 @@ def foreach_geometry_element_zone_main_item_remove(
|
|
|
937
937
|
execution_context: int | str | None = None,
|
|
938
938
|
undo: bool | None = None,
|
|
939
939
|
):
|
|
940
|
-
"""Remove active
|
|
940
|
+
"""Remove active item
|
|
941
941
|
|
|
942
942
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
943
943
|
:type execution_context: int | str | None
|
|
@@ -1509,7 +1509,7 @@ def repeat_zone_item_add(
|
|
|
1509
1509
|
execution_context: int | str | None = None,
|
|
1510
1510
|
undo: bool | None = None,
|
|
1511
1511
|
):
|
|
1512
|
-
"""Add
|
|
1512
|
+
"""Add item below active item
|
|
1513
1513
|
|
|
1514
1514
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1515
1515
|
:type execution_context: int | str | None
|
|
@@ -1523,7 +1523,7 @@ def repeat_zone_item_move(
|
|
|
1523
1523
|
*,
|
|
1524
1524
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1525
1525
|
):
|
|
1526
|
-
"""Move active
|
|
1526
|
+
"""Move active item
|
|
1527
1527
|
|
|
1528
1528
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1529
1529
|
:type execution_context: int | str | None
|
|
@@ -1537,7 +1537,7 @@ def repeat_zone_item_remove(
|
|
|
1537
1537
|
execution_context: int | str | None = None,
|
|
1538
1538
|
undo: bool | None = None,
|
|
1539
1539
|
):
|
|
1540
|
-
"""Remove active
|
|
1540
|
+
"""Remove active item
|
|
1541
1541
|
|
|
1542
1542
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1543
1543
|
:type execution_context: int | str | None
|
|
@@ -1836,7 +1836,7 @@ def simulation_zone_item_add(
|
|
|
1836
1836
|
execution_context: int | str | None = None,
|
|
1837
1837
|
undo: bool | None = None,
|
|
1838
1838
|
):
|
|
1839
|
-
"""Add
|
|
1839
|
+
"""Add item below active item
|
|
1840
1840
|
|
|
1841
1841
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1842
1842
|
:type execution_context: int | str | None
|
|
@@ -1850,7 +1850,7 @@ def simulation_zone_item_move(
|
|
|
1850
1850
|
*,
|
|
1851
1851
|
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1852
1852
|
):
|
|
1853
|
-
"""Move active
|
|
1853
|
+
"""Move active item
|
|
1854
1854
|
|
|
1855
1855
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1856
1856
|
:type execution_context: int | str | None
|
|
@@ -1864,7 +1864,7 @@ def simulation_zone_item_remove(
|
|
|
1864
1864
|
execution_context: int | str | None = None,
|
|
1865
1865
|
undo: bool | None = None,
|
|
1866
1866
|
):
|
|
1867
|
-
"""Remove active
|
|
1867
|
+
"""Remove active item
|
|
1868
1868
|
|
|
1869
1869
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1870
1870
|
:type execution_context: int | str | None
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1598,7 +1598,6 @@ def select_box(
|
|
|
1598
1598
|
ymax: int | None = 0,
|
|
1599
1599
|
wait_for_input: bool | None = True,
|
|
1600
1600
|
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
1601
|
-
tweak: bool | None = False,
|
|
1602
1601
|
include_handles: bool | None = False,
|
|
1603
1602
|
ignore_connections: bool | None = False,
|
|
1604
1603
|
):
|
|
@@ -1628,8 +1627,6 @@ def select_box(
|
|
|
1628
1627
|
SUB
|
|
1629
1628
|
Subtract -- Subtract existing selection.
|
|
1630
1629
|
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
1631
|
-
:param tweak: Tweak, Operator has been activated using a click-drag event
|
|
1632
|
-
:type tweak: bool | None
|
|
1633
1630
|
:param include_handles: Select Handles, Select the strips and their handles
|
|
1634
1631
|
:type include_handles: bool | None
|
|
1635
1632
|
:param ignore_connections: Ignore Connections, Select strips individually whether or not they are connected
|
bpy/ops/ui/__init__.pyi
CHANGED
|
@@ -499,6 +499,18 @@ def view_item_rename(
|
|
|
499
499
|
:type undo: bool | None
|
|
500
500
|
"""
|
|
501
501
|
|
|
502
|
+
def view_scroll(
|
|
503
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
504
|
+
execution_context: int | str | None = None,
|
|
505
|
+
undo: bool | None = None,
|
|
506
|
+
):
|
|
507
|
+
"""Undocumented, consider contributing.
|
|
508
|
+
|
|
509
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
510
|
+
:type execution_context: int | str | None
|
|
511
|
+
:type undo: bool | None
|
|
512
|
+
"""
|
|
513
|
+
|
|
502
514
|
def view_start_filter(
|
|
503
515
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
504
516
|
execution_context: int | str | None = None,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -5721,6 +5721,8 @@ def usd_import(
|
|
|
5721
5721
|
import_usd_preview: bool | None = True,
|
|
5722
5722
|
set_material_blend: bool | None = True,
|
|
5723
5723
|
light_intensity_scale: float | None = 1.0,
|
|
5724
|
+
mtl_purpose: typing.Literal["MTL_ALL_PURPOSE", "MTL_PREVIEW", "MTL_FULL"]
|
|
5725
|
+
| None = "MTL_FULL",
|
|
5724
5726
|
mtl_name_collision_mode: typing.Literal["MAKE_UNIQUE", "REFERENCE_EXISTING"]
|
|
5725
5727
|
| None = "MAKE_UNIQUE",
|
|
5726
5728
|
import_textures_mode: typing.Literal["IMPORT_NONE", "IMPORT_PACK", "IMPORT_COPY"]
|
|
@@ -5851,6 +5853,17 @@ def usd_import(
|
|
|
5851
5853
|
:type set_material_blend: bool | None
|
|
5852
5854
|
:param light_intensity_scale: Light Intensity Scale, Scale for the intensity of imported lights
|
|
5853
5855
|
:type light_intensity_scale: float | None
|
|
5856
|
+
:param mtl_purpose: Material Purpose, Attempt to import materials with the given purpose. If no material with this purpose is bound to the primitive, fall back on loading any other bound material
|
|
5857
|
+
|
|
5858
|
+
MTL_ALL_PURPOSE
|
|
5859
|
+
All Purpose -- Attempt to import 'allPurpose' materials..
|
|
5860
|
+
|
|
5861
|
+
MTL_PREVIEW
|
|
5862
|
+
Preview -- Attempt to import 'preview' materials. Load 'allPurpose' materials as a fallback.
|
|
5863
|
+
|
|
5864
|
+
MTL_FULL
|
|
5865
|
+
Full -- Attempt to import 'full' materials. Load 'allPurpose' or 'preview' materials, in that order, as a fallback.
|
|
5866
|
+
:type mtl_purpose: typing.Literal['MTL_ALL_PURPOSE','MTL_PREVIEW','MTL_FULL'] | None
|
|
5854
5867
|
:param mtl_name_collision_mode: Material Name Collision, Behavior when the name of an imported material conflicts with an existing material
|
|
5855
5868
|
|
|
5856
5869
|
MAKE_UNIQUE
|